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

Add .Values.client.proxy command to allow setting HTTPS_PROXY #1212

Merged
merged 1 commit into from
Feb 20, 2024
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
3 changes: 2 additions & 1 deletion CHANGELOG/CHANGELOG-1.13.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ When cutting a new release, update the `unreleased` heading to the tag being gen
## unreleased

* [ENHANCEMENT] [#1203](https://github.com/k8ssandra/k8ssandra-operator/issues/1203) Add new setting ConcurrencyPolicy to MedusaBackupSchedules
* [ENHANCEMENT] [#1209](https://github.com/k8ssandra/k8ssandra-operator/issues/1209) Expose the option to disable the cert-manager presence check in the Helm charts
* [ENHANCEMENT] [#1209](https://github.com/k8ssandra/k8ssandra-operator/issues/1209) Expose the option to disable the cert-manager presence check in the Helm charts
* [ENHANCEMENT] [#1206](https://github.com/k8ssandra/k8ssandra-operator/issues/1206) Allow setting https proxy for CRD upgrader job in Helm charts
4 changes: 4 additions & 0 deletions charts/k8ssandra-operator/templates/crd/batch_job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
{{- if .Values.client.proxy }}
- name: HTTPS_PROXY
value: {{ .Values.client.proxy }}
{{- end }}
args:
- -upgradecrds
- --targetVersion
Expand Down
2 changes: 2 additions & 0 deletions charts/k8ssandra-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ client:
tag: latest
# -- Pull policy for the client container
pullPolicy: IfNotPresent
# -- HTTPS proxy address to use for communication to helm.k8ssandra.io
#proxy:
# -- Allows disabling the check for the presence of cert-manager.
cass-operator:
disableCertManagerCheck: false
Loading