diff --git a/Makefile b/Makefile index 650d460a..7316b9b3 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Image URL to use all building/pushing image targets -VERSION ?= v0.9.1 +VERSION ?= v0.9.2 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} diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index ab1fcff9..57385894 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ kind: Kustomization images: - name: controller newName: docker.io/substratusai/controller-manager - newTag: v0.9.1 + newTag: v0.9.2 diff --git a/config/sci-gcp/kustomization.yaml b/config/sci-gcp/kustomization.yaml index 4ab4fa32..372272ad 100644 --- a/config/sci-gcp/kustomization.yaml +++ b/config/sci-gcp/kustomization.yaml @@ -5,4 +5,4 @@ kind: Kustomization images: - name: sci newName: docker.io/substratusai/sci-gcp - newTag: v0.9.1 + newTag: v0.9.2 diff --git a/config/sci-kind/kustomization.yaml b/config/sci-kind/kustomization.yaml index e48fc9d8..438981c7 100644 --- a/config/sci-kind/kustomization.yaml +++ b/config/sci-kind/kustomization.yaml @@ -8,4 +8,4 @@ kind: Kustomization images: - name: sci newName: docker.io/substratusai/sci-kind - newTag: v0.9.1 + newTag: v0.9.2 diff --git a/docs/api/generated.md b/docs/api/generated.md index ff71591e..bd883d40 100644 --- a/docs/api/generated.md +++ b/docs/api/generated.md @@ -116,6 +116,7 @@ _Appears in:_ | Field | Description | | --- | --- | | `command` _string array_ | Command to run in the container. | +| `env` _object (keys:string, values:string)_ | Environment variables in the container | | `image` _string_ | Image that contains dataset loading code and dependencies. | | `build` _[Build](#build)_ | Build specifies how to build an image. | | `resources` _[Resources](#resources)_ | Resources are the compute resources required by the container. | @@ -197,6 +198,7 @@ _Appears in:_ | Field | Description | | --- | --- | | `command` _string array_ | Command to run in the container. | +| `env` _object (keys:string, values:string)_ | Environment variables in the container | | `image` _string_ | Image that contains model code and dependencies. | | `build` _[Build](#build)_ | Build specifies how to build an image. | | `resources` _[Resources](#resources)_ | Resources are the compute resources required by the container. | @@ -253,6 +255,7 @@ _Appears in:_ | Field | Description | | --- | --- | | `command` _string array_ | Command to run in the container. | +| `env` _object (keys:string, values:string)_ | Environment variables in the container | | `suspend` _boolean_ | Suspend should be set to true to stop the notebook (Pod) from running. This is a pointer to distinguish between explicit false and not specified. | | `image` _string_ | Image that contains notebook and dependencies. | | `build` _[Build](#build)_ | Build specifies how to build an image. | @@ -343,6 +346,7 @@ _Appears in:_ | Field | Description | | --- | --- | | `command` _string array_ | Command to run in the container. | +| `env` _object (keys:string, values:string)_ | Environment variables in the container | | `image` _string_ | Image that contains model serving application and dependencies. | | `build` _[Build](#build)_ | Build specifies how to build an image. | | `resources` _[Resources](#resources)_ | Resources are the compute resources required by the container. | diff --git a/install/gcp/manifests.yaml b/install/gcp/manifests.yaml index 877b2c52..e07e318b 100644 --- a/install/gcp/manifests.yaml +++ b/install/gcp/manifests.yaml @@ -123,6 +123,11 @@ spec: items: type: string type: array + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains dataset loading code and dependencies. type: string @@ -397,6 +402,11 @@ spec: items: type: string type: array + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains model code and dependencies. type: string @@ -683,6 +693,11 @@ spec: required: - name type: object + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains notebook and dependencies. type: string @@ -953,6 +968,11 @@ spec: items: type: string type: array + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains model serving application and dependencies. type: string @@ -1575,7 +1595,7 @@ spec: envFrom: - configMapRef: name: system - image: docker.io/substratusai/controller-manager:v0.9.1 + image: docker.io/substratusai/controller-manager:v0.9.2 livenessProbe: httpGet: path: /healthz @@ -1625,7 +1645,7 @@ spec: - envFrom: - configMapRef: name: system - image: docker.io/substratusai/sci-gcp:v0.9.1 + image: docker.io/substratusai/sci-gcp:v0.9.2 livenessProbe: failureThreshold: 3 initialDelaySeconds: 15 diff --git a/install/kind/manifests.yaml b/install/kind/manifests.yaml index 93101ce8..e3fdfb98 100644 --- a/install/kind/manifests.yaml +++ b/install/kind/manifests.yaml @@ -123,6 +123,11 @@ spec: items: type: string type: array + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains dataset loading code and dependencies. type: string @@ -397,6 +402,11 @@ spec: items: type: string type: array + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains model code and dependencies. type: string @@ -683,6 +693,11 @@ spec: required: - name type: object + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains notebook and dependencies. type: string @@ -953,6 +968,11 @@ spec: items: type: string type: array + env: + additionalProperties: + type: string + description: Environment variables in the container + type: object image: description: Image that contains model serving application and dependencies. type: string @@ -1640,7 +1660,7 @@ spec: envFrom: - configMapRef: name: system - image: docker.io/substratusai/controller-manager:v0.9.1 + image: docker.io/substratusai/controller-manager:v0.9.2 livenessProbe: httpGet: path: /healthz @@ -1719,7 +1739,7 @@ spec: - envFrom: - configMapRef: name: system - image: docker.io/substratusai/sci-kind:v0.9.1 + image: docker.io/substratusai/sci-kind:v0.9.2 livenessProbe: failureThreshold: 3 initialDelaySeconds: 15 diff --git a/install/kubectl-plugins.sh b/install/kubectl-plugins.sh index f808c7ce..140efa72 100755 --- a/install/kubectl-plugins.sh +++ b/install/kubectl-plugins.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -xe -version=v0.9.1 +version=v0.9.2 os=$(uname -s) arch=$(uname -m | sed 's/aarch64/arm64/g' | sed 's/x86_64/amd64/g')