Skip to content

feat: Replace base image with RHEL UBI#44

Merged
theishshah merged 1 commit intomainfrom
replace_base_image_with_rhel_ubi
Jan 28, 2025
Merged

feat: Replace base image with RHEL UBI#44
theishshah merged 1 commit intomainfrom
replace_base_image_with_rhel_ubi

Conversation

@flamarion
Copy link
Copy Markdown
Contributor

This change could unblock the Operator for many customers in OpenShift. Some customers in special, require the Operator built on top of RHEL UBI, which is the nature of this change.
Based on preliminary tests, this change will not impact the way the Operator is executed but will, at the same time, fulfill the requirements described.
On top of it, put us one step ahead and start thinking about getting the W&B Operator certified by Red Hat.

Build:

make docker-build
test -s /Users/flamarion/labs/operator-rhel-ubi/operator/bin/controller-gen && /Users/flamarion/labs/operator-rhel-ubi/operator/bin/controller-gen --version | grep -q v0.14.0 || \
        GOBIN=/Users/flamarion/labs/operator-rhel-ubi/operator/bin go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.14.0
/Users/flamarion/labs/operator-rhel-ubi/operator/bin/controller-gen rbac:roleName=manager-role crd webhook paths="./..." output:crd:artifacts:config=config/crd/bases
/Users/flamarion/labs/operator-rhel-ubi/operator/bin/controller-gen object:headerFile="hack/boilerplate.go.txt" paths="./..."
go fmt ./...
go vet ./...
test -s /Users/flamarion/labs/operator-rhel-ubi/operator/bin/setup-envtest || GOBIN=/Users/flamarion/labs/operator-rhel-ubi/operator/bin go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
KUBEBUILDER_ASSETS="/Users/flamarion/labs/operator-rhel-ubi/operator/bin/k8s/1.26.0-darwin-arm64" go test ./... -coverprofile cover.out
        github.com/wandb/operator/api/v1                coverage: 0.0% of statements
        github.com/wandb/operator               coverage: 0.0% of statements
?       github.com/wandb/operator/controllers/internal/v1       [no test files]
?       github.com/wandb/operator/pkg/redact    [no test files]
        github.com/wandb/operator/pkg/helm              coverage: 0.0% of statements
        github.com/wandb/operator/pkg/wandb/spec/charts         coverage: 0.0% of statements
        github.com/wandb/operator/pkg/utils             coverage: 0.0% of statements
        github.com/wandb/operator/pkg/wandb/spec/channel/deployer/deployerfakes         coverage: 0.0% of statements
        github.com/wandb/operator/pkg/wandb/spec/specfakes              coverage: 0.0% of statements
        github.com/wandb/operator/pkg/wandb/spec/state/statefakes               coverage: 0.0% of statements
        github.com/wandb/operator/pkg/wandb/status              coverage: 0.0% of statements
ok      github.com/wandb/operator/controllers   8.815s  coverage: 54.2% of statements
ok      github.com/wandb/operator/controllers/internal/ctrlqueue        1.982s  coverage: 71.4% of statements
ok      github.com/wandb/operator/pkg/wandb/spec        0.859s  coverage: 0.0% of statements
ok      github.com/wandb/operator/pkg/wandb/spec/channel/deployer       12.687s coverage: 86.5% of statements
ok      github.com/wandb/operator/pkg/wandb/spec/operator       1.345s  coverage: 100.0% of statements
ok      github.com/wandb/operator/pkg/wandb/spec/state  0.647s  coverage: 100.0% of statements
ok      github.com/wandb/operator/pkg/wandb/spec/state/secrets  6.131s  coverage: 76.0% of statements
ok      github.com/wandb/operator/pkg/wandb/spec/utils  2.053s  coverage: 77.8% of statements
docker build -t wandb/controller:latest .
[+] Building 1.1s (21/21) FINISHED                                                                                                                                                                               docker:desktop-linux
 => [internal] load build definition from Dockerfile                                                                                                                                                                             0.0s
 => => transferring dockerfile: 1.63kB                                                                                                                                                                                           0.0s
 => [internal] load metadata for registry.access.redhat.com/ubi9/ubi:latest                                                                                                                                                      0.5s
 => [internal] load metadata for docker.io/library/golang:1.23                                                                                                                                                                   1.0s
 => [auth] library/golang:pull token for registry-1.docker.io                                                                                                                                                                    0.0s
 => [internal] load .dockerignore                                                                                                                                                                                                0.0s
 => => transferring context: 241B                                                                                                                                                                                                0.0s
 => [manager-builder  1/11] FROM docker.io/library/golang:1.23@sha256:574185e5c6b9d09873f455a7c205ea0514bfd99738c5dc7750196403a44ed4b7                                                                                           0.0s
 => [internal] load build context                                                                                                                                                                                                0.0s
 => => transferring context: 9.29kB                                                                                                                                                                                              0.0s
 => [stage-1 1/3] FROM registry.access.redhat.com/ubi9/ubi:latest@sha256:1057dab827c782abcfb9bda0c3900c0966b5066e671d54976a7bcb3a2d1a5e53                                                                                        0.0s
 => CACHED [manager-builder  2/11] WORKDIR /workspace                                                                                                                                                                            0.0s
 => CACHED [manager-builder  3/11] COPY go.mod go.mod                                                                                                                                                                            0.0s
 => CACHED [manager-builder  4/11] COPY go.sum go.sum                                                                                                                                                                            0.0s
 => CACHED [manager-builder  5/11] RUN go mod download                                                                                                                                                                           0.0s
 => CACHED [manager-builder  6/11] COPY main.go main.go                                                                                                                                                                          0.0s
 => CACHED [manager-builder  7/11] COPY api/ api/                                                                                                                                                                                0.0s
 => CACHED [manager-builder  8/11] COPY pkg/ pkg/                                                                                                                                                                                0.0s
 => CACHED [manager-builder  9/11] COPY controllers/ controllers/                                                                                                                                                                0.0s
 => CACHED [manager-builder 10/11] RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager main.go                                                                                                                      0.0s
 => CACHED [manager-builder 11/11] RUN mkdir -p /helm/.cache/helm /helm/.config/helm /helm/.local/share/helm && chmod -R 1777 /helm                                                                                              0.0s
 => CACHED [stage-1 2/3] COPY --from=manager-builder /workspace/manager .                                                                                                                                                        0.0s
 => CACHED [stage-1 3/3] COPY --from=manager-builder /helm /helm                                                                                                                                                                 0.0s
 => exporting to image                                                                                                                                                                                                           0.0s
 => => exporting layers                                                                                                                                                                                                          0.0s
 => => writing image sha256:d248a618e529dbbd73648106a349b544a9ddd28989e1a77f9d0bf067ee8283a4                                                                                                                                     0.0s
 => => naming to docker.io/wandb/controller:latest

Running the operator locally with the new image

docker run --rm -e KUBECONFIG=$KUBECONFIG --mount type=bind,source=/Users/flamarion/labs/kubernetes-home/config,target=/Users/flamarion/labs/kubernetes-home/config,readonly wandb/controller:latest
2024-12-06T14:06:46Z    INFO    setup   starting manager
2024-12-06T14:06:46Z    INFO    controller-runtime.metrics      Starting metrics server
2024-12-06T14:06:46Z    INFO    starting server {"name": "health probe", "addr": "[::]:8081"}
2024-12-06T14:06:46Z    INFO    controller-runtime.metrics      Serving metrics server  {"bindAddress": ":8080", "secure": false}
2024-12-06T14:06:46Z    INFO    Starting EventSource    {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "source": "kind source: *v1.WeightsAndBiases"}
2024-12-06T14:06:46Z    INFO    Starting EventSource    {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "source": "kind source: *v1.Secret"}
2024-12-06T14:06:46Z    INFO    Starting EventSource    {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "source": "kind source: *v1.ConfigMap"}
2024-12-06T14:06:46Z    INFO    Starting Controller     {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases"}
2024-12-06T14:06:46Z    INFO    Starting workers        {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "worker count": 1}
2024-12-06T14:06:46Z    INFO    === Reconciling Weights & Biases instance...    {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "WeightsAndBiases": {"name":"wandb","namespace":"default"}, "namespace": "default", "name": "wandb", "reconcileID": "91025dd8-d0ea-4f04-ae1a-308a7fcdda08", "NamespacedName": {"name":"wandb","namespace":"default"}, "Name": "wandb", "start": true}
2024-12-06T14:06:47Z    INFO    Found Weights & Biases instance, processing the spec... {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "WeightsAndBiases": {"name":"wandb","namespace":"default"}, "namespace": "default", "name": "wandb", "reconcileID": "91025dd8-d0ea-4f04-ae1a-308a7fcdda08", "Spec": {"chart":{},"values":{}}}
2024-12-06T14:06:47Z    DEBUG   events  Reconciling     {"type": "Normal", "object": {"kind":"WeightsAndBiases","namespace":"default","name":"wandb","uid":"373b23ee-1842-4a69-ad8d-0f0abfe2bdb3","apiVersion":"apps.wandb.com/v1","resourceVersion":"112561711"}, "reason": "Reconciling"}
2024-12-06T14:06:47Z    DEBUG   events  Loading desired configuration   {"type": "Normal", "object": {"kind":"WeightsAndBiases","namespace":"default","name":"wandb","uid":"373b23ee-1842-4a69-ad8d-0f0abfe2bdb3","apiVersion":"apps.wandb.com/v1","resourceVersion":"112561711"}, "reason": "LoadingConfig"}
2024-12-06T14:06:47Z    INFO    Desired spec    {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "WeightsAndBiases": {"name":"wandb","namespace":"default"}, "namespace": "default", "name": "wandb", "reconcileID": "91025dd8-d0ea-4f04-ae1a-308a7fcdda08", "spec": {"metadata":{"channelId":"f0081406-b0a7-4c51-9c2d-1b911aa68b09","channelInheritsFrom":"b56e1972-3c78-4de0-af90-e3597bb0785a","channelName":"OpenShift - Flamarion","releaseCreatedAt":"2024-12-06T00:52:10.678Z","releaseExtends":"6368f36f-5854-445f-a460-f8ea3fc6d799","releaseId":"e47c97cf-53b9-4965-9246-9e0aa32831df","releaseName":"v202412-5.16"},"chart":{"url":"https://charts.wandb.ai","name":"operator-wandb","version":"0.18.17","password":"","username":""},"values":{"app":{"image":{"repository":"wandb/local","tag":"0.63.0"}},"console":{"image":{"repository":"wandb/console","tag":"2.13.1"}},"flat-run-fields-updater":{"image":{"tag":"0.63.0"}},"global":{"bucket":{"accessKey":"***","name":"pves3.home.lab","path":"wandb","provider":"s3","region":"default","secretKey":"wsnNA1Vq2RHbKdrXSTaw0a09h79QQBZk0AXRUMNY"},"extraEnv":{"ENABLE_REGISTRY_UI":true,"GORILLA_ACTIVITY_STORE_BACKFILL_ENABLE":"true","GORILLA_ACTIVITY_STORE_ENABLE":"true","GORILLA_ACTIVITY_STORE_SERVE":"true","GORILLA_ALLOW_ANONYMOUS_PUBLIC_PROJECTS":true,"GORILLA_ARTIFACT_GC_ENABLED":"true","GORILLA_DATA_RETENTION_PERIOD":"96h","GORILLA_TRACER":"otlp+grpc://wandb-otel-daemonset:4317?trace_ratio=1","SERVER_FLAG_NAMED_WORKSPACES_AVAILABLE":true,"SUPPORTED_FILE_STORES":"s3://3IAXODZ870OCD6TCFIAD:wsnNA1Vq2RHbKdrXSTaw0a09h79QQBZk0AXRUMNY@pves3.home.lab/team-a","TAG_CLOUD":"FLAMA_CLOUD","TAG_CUSTOMER_NS":"FLAMA","TAG_ENV":"HOME_SWEEET_HOME"},"host":"http://wandb.home.lab","license":"***","mysql":{"database":"wandb","host":"mysql.home.lab","password":"***","port":3306,"user":"wandb"},"operator":{"apiVersion":"apps.wandb.com/v1","namespace":"wandb"},"weave-trace":{"enabled":false}},"ingress":{"annotations":{"nginx.ingress.kubernetes.io/proxy-body-size":"64m"},"class":"nginx"},"mysql":{"install":false},"parquet":{"image":{"repository":"wandb/local","tag":"0.63.0"}},"weave":{"image":{"repository":"wandb/local","tag":"0.63.0"},"install":true,"persistence":{"accessMode":"ReadWriteOnce"}},"weave-trace":{"image":{"repository":"wandb/weave-trace","tag":"0.63.0"},"install":false}}}}
2024-12-06T14:06:47Z    INFO    Active spec found       {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "WeightsAndBiases": {"name":"wandb","namespace":"default"}, "namespace": "default", "name": "wandb", "reconcileID": "91025dd8-d0ea-4f04-ae1a-308a7fcdda08", "spec": {"metadata":{"channelId":"f0081406-b0a7-4c51-9c2d-1b911aa68b09","channelInheritsFrom":"b56e1972-3c78-4de0-af90-e3597bb0785a","channelName":"OpenShift - Flamarion","releaseCreatedAt":"2024-12-06T00:52:10.678Z","releaseExtends":"6368f36f-5854-445f-a460-f8ea3fc6d799","releaseId":"e47c97cf-53b9-4965-9246-9e0aa32831df","releaseName":"v202412-5.16"},"chart":{"url":"https://charts.wandb.ai","name":"operator-wandb","version":"0.18.17","password":"","username":""},"values":{"app":{"image":{"repository":"wandb/local","tag":"0.63.0"}},"console":{"image":{"repository":"wandb/console","tag":"2.13.1"}},"flat-run-fields-updater":{"image":{"tag":"0.63.0"}},"global":{"bucket":{"accessKey":"***","name":"pves3.home.lab","path":"wandb","provider":"s3","region":"default","secretKey":"wsnNA1Vq2RHbKdrXSTaw0a09h79QQBZk0AXRUMNY"},"extraEnv":{"ENABLE_REGISTRY_UI":true,"GORILLA_ACTIVITY_STORE_BACKFILL_ENABLE":"true","GORILLA_ACTIVITY_STORE_ENABLE":"true","GORILLA_ACTIVITY_STORE_SERVE":"true","GORILLA_ALLOW_ANONYMOUS_PUBLIC_PROJECTS":true,"GORILLA_ARTIFACT_GC_ENABLED":"true","GORILLA_DATA_RETENTION_PERIOD":"96h","GORILLA_TRACER":"otlp+grpc://wandb-otel-daemonset:4317?trace_ratio=1","SERVER_FLAG_NAMED_WORKSPACES_AVAILABLE":true,"SUPPORTED_FILE_STORES":"s3://3IAXODZ870OCD6TCFIAD:wsnNA1Vq2RHbKdrXSTaw0a09h79QQBZk0AXRUMNY@pves3.home.lab/team-a","TAG_CLOUD":"FLAMA_CLOUD","TAG_CUSTOMER_NS":"FLAMA","TAG_ENV":"HOME_SWEEET_HOME"},"host":"http://wandb.home.lab","license":"***","mysql":{"database":"wandb","host":"mysql.home.lab","password":"***","port":3306,"user":"wandb"},"operator":{"apiVersion":"apps.wandb.com/v1","namespace":"wandb"},"weave-trace":{"enabled":false}},"ingress":{"annotations":{"nginx.ingress.kubernetes.io/proxy-body-size":"64m"},"class":"nginx"},"mysql":{"install":false},"parquet":{"image":{"repository":"wandb/local","tag":"0.63.0"}},"weave":{"image":{"repository":"wandb/local","tag":"0.63.0"},"install":true,"persistence":{"accessMode":"ReadWriteOnce"}},"weave-trace":{"image":{"repository":"wandb/weave-trace","tag":"0.63.0"},"install":false}}}}
2024-12-06T14:06:47Z    INFO    No changes found        {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases", "WeightsAndBiases": {"name":"wandb","namespace":"default"}, "namespace": "default", "name": "wandb", "reconcileID": "91025dd8-d0ea-4f04-ae1a-308a7fcdda08"}

Stop the operator after a CTRL+C

^C2024-12-06T14:06:52Z  INFO    Stopping and waiting for non leader election runnables
2024-12-06T14:06:52Z    INFO    Stopping and waiting for leader election runnables
2024-12-06T14:06:52Z    INFO    Shutdown signal received, waiting for all workers to finish     {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases"}
2024-12-06T14:06:52Z    INFO    All workers finished    {"controller": "weightsandbiases", "controllerGroup": "apps.wandb.com", "controllerKind": "WeightsAndBiases"}
2024-12-06T14:06:52Z    INFO    Stopping and waiting for caches
2024-12-06T14:06:52Z    INFO    Stopping and waiting for webhooks
2024-12-06T14:06:52Z    INFO    Stopping and waiting for HTTP servers
2024-12-06T14:06:52Z    INFO    controller-runtime.metrics      Shutting down metrics server with timeout of 1 minute
2024-12-06T14:06:52Z    INFO    shutting down server    {"name": "health probe", "addr": "[::]:8081"}
2024-12-06T14:06:52Z    INFO    Wait completed, proceeding to shutdown the manager

@theishshah theishshah merged commit 12497d2 into main Jan 28, 2025
@theishshah theishshah deleted the replace_base_image_with_rhel_ubi branch January 28, 2025 17:53
jsbroks pushed a commit that referenced this pull request Jan 28, 2025
## [1.17.0](v1.16.1...v1.17.0) (2025-01-28)

### Features

* Replace base image with RHEL UBI ([#44](#44)) ([12497d2](12497d2))
@jsbroks
Copy link
Copy Markdown
Member

jsbroks commented Jan 28, 2025

This PR is included in version 1.17.0 🎉

sqaisar pushed a commit to sqaisar/wandb-operator that referenced this pull request Apr 11, 2025
## 1.0.0 (2025-04-11)

### Features

* Add active-state cm ([wandb#2](https://github.com/sqaisar/wandb-operator/issues/2)) ([5a6c4c3](5a6c4c3))
* Add caching for deployer release requests ([1185b40](1185b40))
* Add events recording ([388d37b](388d37b))
* Add helm support ([077765c](077765c))
* Add option to set reconcileFrequency ([484c014](484c014))
* Add support for helm repo releases ([dfef752](dfef752))
* Add support for release from a git repository ([8a6b073](8a6b073))
* Adding owner ref and wait and timeout  to uninstall  ([wandb#51](https://github.com/sqaisar/wandb-operator/issues/51)) ([f21fd6d](f21fd6d))
* Allow the operator to support installation without cluster level permissions ([wandb#16](https://github.com/sqaisar/wandb-operator/issues/16)) ([6f29a3e](6f29a3e))
* Make wandb operator available on OperatorHub ([wandb#32](https://github.com/sqaisar/wandb-operator/issues/32)) ([1a59dab](1a59dab))
* **operator:** Add airgapped support ([wandb#12](https://github.com/sqaisar/wandb-operator/issues/12)) ([bfd3796](bfd3796))
* Prevent Logging of Sensitive info in Plain Text ([wandb#31](https://github.com/sqaisar/wandb-operator/issues/31)) ([5530cb3](5530cb3))
* Prevent Logging of Sensitive info in Plain Text ([wandb#35](https://github.com/sqaisar/wandb-operator/issues/35)) ([9a752fd](9a752fd))
* Release Version Pinning Init ([wandb#28](https://github.com/sqaisar/wandb-operator/issues/28)) ([dfe8bda](dfe8bda))
* Replace base image with RHEL UBI ([wandb#44](https://github.com/sqaisar/wandb-operator/issues/44)) ([12497d2](12497d2))
* Support for deploymenting via jobs ([da801ea](da801ea))
* Updated license.go file to include the feature for licenseSecret as well ([wandb#54](https://github.com/sqaisar/wandb-operator/issues/54)) ([bb55caa](bb55caa))
* Use container based deployments only ([3e6b222](3e6b222))
* use secrets instead of configmaps ([049797f](049797f))

### Bug Fixes

* add applied config to download bundle ([bef77c2](bef77c2))
* Add console namespace and service name to config properties ([0b9efef](0b9efef))
* Add debugging for installing release ([893ebd9](893ebd9))
* add gh token for ci ([72d456f](72d456f))
* add license log ([wandb#11](https://github.com/sqaisar/wandb-operator/issues/11)) ([e129fab](e129fab))
* Add operator namespace env ([846731a](846731a))
* add operator properties to config ([b5f48f0](b5f48f0))
* add pnpm, node and git to docker image ([176b6f0](176b6f0))
* Add Tilt configs for local development ([wandb#53](https://github.com/sqaisar/wandb-operator/issues/53)) ([5ef82b5](5ef82b5))
* added changelog commits ([61b5f5d](61b5f5d))
* Assign metadata instead of merging it ([908c839](908c839))
* Basic Auth Fix ([wandb#56](https://github.com/sqaisar/wandb-operator/issues/56)) ([414b2cf](414b2cf))
* Bump controller tools version to latest ([wandb#13](https://github.com/sqaisar/wandb-operator/issues/13)) ([c52dbb6](c52dbb6))
* Bump deps ([wandb#36](https://github.com/sqaisar/wandb-operator/issues/36)) ([eefb59c](eefb59c))
* Bump deps ([wandb#70](https://github.com/sqaisar/wandb-operator/issues/70)) ([11ba9f8](11ba9f8))
* Channel spec not getting applied correctly ([6e763a8](6e763a8))
* Charts download ([57355ce](57355ce))
* Clean up docker image ([ef7c629](ef7c629))
* clean up env for image push ([7213ed2](7213ed2))
* Correct merge order ([cd49cef](cd49cef))
* correctly check if chart is installed based on status ([384d330](384d330))
* Create release rc files ([f7f4622](f7f4622))
* Debug logging errors ([wandb#26](https://github.com/sqaisar/wandb-operator/issues/26)) ([a641621](a641621))
* Debug logging the cache ([wandb#21](https://github.com/sqaisar/wandb-operator/issues/21)) ([26e8fd5](26e8fd5))
* Debugging logic ([wandb#22](https://github.com/sqaisar/wandb-operator/issues/22)) ([2c019b8](2c019b8))
* Default to dev mode ([d961f77](d961f77))
* docker build ([d160a9c](d160a9c))
* docker image push ([e08b3da](e08b3da))
* Git release pulls correctly ([d47aebd](d47aebd))
* init controller ([0f0a9e9](0f0a9e9))
* install go version ([6664b4b](6664b4b))
* Install kubectl in docker image ([e5df9de](e5df9de))
* Jobs work? ([9972d26](9972d26))
* kubectl not working in docker image ([ffc694e](ffc694e))
* Local_resource and kubectl apply could risk deploying to the wrong context ([wandb#66](https://github.com/sqaisar/wandb-operator/issues/66)) ([a90a270](a90a270))
* lock pnpm version ([c2608f7](c2608f7))
* Log the diff of specs ([wandb#23](https://github.com/sqaisar/wandb-operator/issues/23)) ([c0ea0d8](c0ea0d8))
* Look for secret in namespace of wandb CR ([wandb#78](https://github.com/sqaisar/wandb-operator/issues/78)) ([e374c9a](e374c9a))
* Mask sensitive values in log ([wandb#14](https://github.com/sqaisar/wandb-operator/issues/14)) ([514336d](514336d))
* merge func ([94aa0d0](94aa0d0))
* Output json format logs ([90af7b6](90af7b6))
* Pass namespace into chart ([e8e0b8f](e8e0b8f))
* pass spec namespace and name ([79d77f2](79d77f2))
* Preserve unknown fields ([565a25f](565a25f))
* properly get license ([6ff6533](6ff6533))
* Properly merge chart specs together ([37c41bc](37c41bc))
* Properly parse chart from deployer ([5eabdfe](5eabdfe))
* Properly set namespace for deployments ([53f51a9](53f51a9))
* Properly update complete status ([86a5196](86a5196))
* push images to dockerhub ([d4cdd27](d4cdd27))
* refactor spec ([87be86b](87be86b))
* Refactor specs ([7c6da34](7c6da34))
* Release needs ginkgo ([wandb#65](https://github.com/sqaisar/wandb-operator/issues/65)) ([c51df78](c51df78))
* remove console ([fba45ee](fba45ee))
* remove debugging logs ([d4da31f](d4da31f))
* remove submodule ([bdb408a](bdb408a))
* Remove ui building step ([08ee985](08ee985))
* Rename config -> values and release -> chart ([519cd1b](519cd1b))
* Rename config spec cfs ([672100a](672100a))
* rename configs ([8727281](8727281))
* rename docker variables ([274e20c](274e20c))
* rename versioning step name ([77bf4ed](77bf4ed))
* reorder backup ([ab66486](ab66486))
* revert to v2 for semver ([535a721](535a721))
* Save active spec metadata ([47bd862](47bd862))
* Secret reading metadata ([6dab7ed](6dab7ed))
* secrets stored with correct values ([f6d61e9](f6d61e9))
* Serve console with gin ([c9e04aa](c9e04aa))
* set namespace when running kubectl apply ([1d6f00c](1d6f00c))
* Setting cached release namespace incorrectly ([e585555](e585555))
* Simplify docker image ([1cf55e4](1cf55e4))
* Support Openshift permissions schema for the helm cache ([wandb#17](https://github.com/sqaisar/wandb-operator/issues/17)) ([b498f79](b498f79))
* TLS ([wandb#67](https://github.com/sqaisar/wandb-operator/issues/67)) ([0d3013c](0d3013c))
* Tmp directory permissions ([b0820f5](b0820f5))
* Update to fix some CVEs ([wandb#55](https://github.com/sqaisar/wandb-operator/issues/55)) ([9a34cbe](9a34cbe))
* upgrade semantic to v3 ([594c463](594c463))
* Use cdk8s image for apply container ([189bc08](189bc08))
* Use deployer release channels ([480b380](480b380))
* Using validate for job spec ([5c7ff66](5c7ff66))
* x-kubernetes-preserve-unknown-fields ([bedac52](bedac52))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants