Skip to content

Commit

Permalink
fix : Forgot to upgrade some version numbers that are not overloaded (#…
Browse files Browse the repository at this point in the history
…59)

and fix some remnant of registry so that it's easier to test locally
  • Loading branch information
floriansipp authored Feb 5, 2025
1 parent 237da30 commit 67478f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions charts/workbench-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ controllerManager:
- --metrics-bind-address=:8080
- --leader-elect
- --health-probe-bind-address=:8081
- --registry=registry.build.chorus-tre.ch
- --registry=harbor.build.chorus-tre.local
- --apps-repository=apps
- --xpra-server-image=registry.build.chorus-tre.ch/apps/xpra-server
- --xpra-server-image=harbor.build.chorus-tre.local/apps/xpra-server
- --socat-image=alpine/socat:1.8.0.0
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
image:
repository: registry.chorus-tre.local/chorus/workbench-operator
tag: 0.3.0
repository: harbor.chorus-tre.local/chorus/workbench-operator
tag: 0.3.4
resources:
limits:
cpu: 500m
Expand Down
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func main() {
"If set the metrics endpoint is served securely")
flag.BoolVar(&enableHTTP2, "enable-http2", false,
"If set, HTTP/2 will be enabled for the metrics and webhook servers")
flag.StringVar(&registry, "registry", "registry.build.chorus-tre.local", "The hostname of the OCI registry")
flag.StringVar(&registry, "registry", "harbor.build.chorus-tre.local", "The hostname of the OCI registry")
flag.StringVar(&appsRepository, "apps-repository", "apps", "The repository holding the apps")
flag.StringVar(&xpraServerImage, "xpra-server-image", "", "Xpra server OCI image name (version is part of the CRD)")
flag.StringVar(&socatImage, "socat-image", "", "socat OCI image (please specify the version)")
Expand Down
4 changes: 2 additions & 2 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: controller
newName: registry.chorus-tre.local/chorus/workbench-operator
newTag: 0.3.0
newName: harbor.chorus-tre.local/chorus/workbench-operator
newTag: 0.3.4

0 comments on commit 67478f5

Please sign in to comment.