Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update image tag #1059

Merged
merged 1 commit into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/harbor-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Deploy Harbor Operator
| image.pullPolicy | string | `"IfNotPresent"` | The image pull policy for the controller. |
| image.registry | string | `"docker.io"` | The image registry whose default is docker.io. |
| image.repository | string | `"goharbor/harbor-operator"` | The image repository whose default is the chart appVersion. |
| image.tag | string | `"dev_master"` | The image tag whose default is the chart appVersion. |
| image.tag | string | `"dev"` | The image tag whose default is the chart appVersion. |
| imagePullSecrets | list | `[]` | Reference to one or more secrets to be used when pulling images <https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/> For example: `[ {"name":"image-pull-secret"} ]` |
| installCRDs | bool | `false` | If true, CRD resources will be installed as part of the Helm chart. If enabled, when uninstalling CRD resources will be deleted causing all installed custom resources to be DELETED |
| leaderElection.namespace | string | `"kube-system"` | The namespace used to store the ConfigMap for leader election |
Expand Down
2 changes: 1 addition & 1 deletion charts/harbor-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image:
# image.pullPolicy -- The image pull policy for the controller.
pullPolicy: IfNotPresent
# image.tag -- The image tag whose default is the chart appVersion.
tag: "dev_master"
tag: "dev"

# installCRDs -- If true, CRD resources will be installed as part of the Helm chart. If enabled, when uninstalling CRD resources will be deleted causing all installed custom resources to be DELETED
installCRDs: false
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ status:
operator:
controllerGitCommit: 35056b427665e9ee6331e7b3ddede8c26b86dbc5
controllerName: harborcluster
controllerVersion: dev_master
controllerVersion: dev
revision: 1642500151584677122
status: healthy
```
Expand Down
2 changes: 1 addition & 1 deletion manifests/cluster/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66808,7 +66808,7 @@ spec:
fieldPath: metadata.namespace
- name: CONFIGURATION_FROM
value: env,file:/etc/harbor-operator/config.yaml
image: ghcr.io/goharbor/harbor-operator:dev_master
image: ghcr.io/goharbor/harbor-operator:dev
livenessProbe:
httpGet:
path: /healthz
Expand Down
2 changes: 1 addition & 1 deletion manifests/cluster/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ images:
newName: ghcr.io/goharbor/postgres-operator
- name: goharbor/harbor-operator
newName: ghcr.io/goharbor/harbor-operator
newTag: dev_master
newTag: dev
2 changes: 1 addition & 1 deletion manifests/harbor/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44907,7 +44907,7 @@ spec:
fieldPath: metadata.namespace
- name: CONFIGURATION_FROM
value: env,file:/etc/harbor-operator/config.yaml
image: ghcr.io/goharbor/harbor-operator:dev_master
image: ghcr.io/goharbor/harbor-operator:dev
livenessProbe:
httpGet:
path: /healthz
Expand Down
2 changes: 1 addition & 1 deletion manifests/harbor/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ resources:
images:
- name: goharbor/harbor-operator
newName: ghcr.io/goharbor/harbor-operator
newTag: dev_master
newTag: dev
Loading