Skip to content

Commit

Permalink
release v0.8.3 (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
samos123 committed Aug 23, 2023
1 parent 6ba4616 commit d07052a
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# Image URL to use all building/pushing image targets
VERSION ?= v0.8.2
VERSION ?= v0.8.3
IMG ?= docker.io/substratusai/controller-manager:${VERSION}
IMG_SCI_KIND ?= docker.io/substratusai/sci-kind:${VERSION}
IMG_SCI_GCP ?= docker.io/substratusai/sci-gcp:${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: docker.io/substratusai/controller-manager
newTag: v0.8.2
newTag: v0.8.3
2 changes: 1 addition & 1 deletion config/sci-gcp/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: sci
newName: docker.io/substratusai/sci-gcp
newTag: v0.8.2
newTag: v0.8.3
2 changes: 1 addition & 1 deletion config/sci-kind/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ kind: Kustomization
images:
- name: sci
newName: docker.io/substratusai/sci-kind
newTag: v0.8.2
newTag: v0.8.3
14 changes: 11 additions & 3 deletions install/gcp/manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -965,6 +965,15 @@ spec:
required:
- name
type: object
params:
additionalProperties:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
description: Params will be passed into the loading process as environment
variables.
type: object
resources:
description: Resources are the compute resources required by the container.
properties:
Expand Down Expand Up @@ -1566,7 +1575,7 @@ spec:
envFrom:
- configMapRef:
name: system
image: docker.io/substratusai/controller-manager:v0.8.2
image: docker.io/substratusai/controller-manager:v0.8.3
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1616,8 +1625,7 @@ spec:
- envFrom:
- configMapRef:
name: system
image: docker.io/substratusai/sci-gcp:v0.8.2
imagePullPolicy: Always
image: docker.io/substratusai/sci-gcp:v0.8.3
livenessProbe:
failureThreshold: 3
initialDelaySeconds: 15
Expand Down
14 changes: 11 additions & 3 deletions install/kind/manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -965,6 +965,15 @@ spec:
required:
- name
type: object
params:
additionalProperties:
anyOf:
- type: integer
- type: string
x-kubernetes-int-or-string: true
description: Params will be passed into the loading process as environment
variables.
type: object
resources:
description: Resources are the compute resources required by the container.
properties:
Expand Down Expand Up @@ -1631,7 +1640,7 @@ spec:
envFrom:
- configMapRef:
name: system
image: docker.io/substratusai/controller-manager:v0.8.2
image: docker.io/substratusai/controller-manager:v0.8.3
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1710,8 +1719,7 @@ spec:
- envFrom:
- configMapRef:
name: system
image: docker.io/substratusai/sci-kind:v0.8.2
imagePullPolicy: Always
image: docker.io/substratusai/sci-kind:v0.8.3
livenessProbe:
failureThreshold: 3
initialDelaySeconds: 15
Expand Down
2 changes: 1 addition & 1 deletion install/kubectl-plugins.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -xe

version=v0.8.2
version=v0.8.3
os=$(uname -s)
arch=$(uname -m | sed 's/aarch64/arm64/g' | sed 's/x86_64/amd64/g')

Expand Down

0 comments on commit d07052a

Please sign in to comment.