-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Chart: Add volumes for webhook patch job. #13811
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
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for kubernetes-ingress-nginx canceled.
|
The committers listed above are authorized under a signed CLA. |
This issue is currently awaiting triage. If Ingress contributors determines this is a relevant issue, they will accept it by applying the The Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: ababu13 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Welcome @ababu13! |
Hi @ababu13. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
charts/ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml
Outdated
Show resolved
Hide resolved
charts/ingress-nginx/templates/admission-webhooks/job-patch/job-createSecret.yaml
Outdated
Show resolved
Hide resolved
charts/ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml
Outdated
Show resolved
Hide resolved
charts/ingress-nginx/templates/admission-webhooks/job-patch/job-patchWebhook.yaml
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also implement unit tests in the tests
directory of the chart.
@@ -795,6 +795,18 @@ controller: | |||
# requests: | |||
# cpu: 10m | |||
# memory: 20Mi | |||
# -- VolumeMounts to set for the AdmissionWebhook createSecret Job. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# -- VolumeMounts to set for the AdmissionWebhook createSecret Job. | |
# -- Volume mounts to add to the admission webhook secret creation job. |
# mountPath: /etc/webhook/certs | ||
# readOnly: true | ||
volumeMounts: [] | ||
# -- Volumes to set for the AdmissionWebhook createSecret Job. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# -- Volumes to set for the AdmissionWebhook createSecret Job. | |
# -- Volumes to add to the admission webhook secret creation job. |
@@ -812,6 +824,18 @@ controller: | |||
- ALL | |||
readOnlyRootFilesystem: true | |||
resources: {} | |||
# -- VolumeMounts to set for the AdmissionWebhook patchWebhook Job. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# -- VolumeMounts to set for the AdmissionWebhook patchWebhook Job. | |
# -- Volume mounts to add to the admission webhook patch job. |
# mountPath: /etc/webhook/certs | ||
# readOnly: true | ||
volumeMounts: [] | ||
# -- Volumes to set for the AdmissionWebhook patchWebhook Job. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# -- Volumes to set for the AdmissionWebhook patchWebhook Job. | |
# -- Volumes to add to the admission webhook patch job. |
@@ -264,6 +264,8 @@ metadata: | |||
| controller.admissionWebhooks.createSecretJob.name | string | `"create"` | | | |||
| controller.admissionWebhooks.createSecretJob.resources | object | `{}` | | | |||
| controller.admissionWebhooks.createSecretJob.securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"readOnlyRootFilesystem":true,"runAsGroup":65532,"runAsNonRoot":true,"runAsUser":65532,"seccompProfile":{"type":"RuntimeDefault"}}` | Security context for secret creation containers | | |||
| controller.admissionWebhooks.createSecretJob.volumeMounts | list | `[]` | VolumeMounts to set for the AdmissionWebhook createSecret Job. Example: - name: certs mountPath: /etc/webhook/certs readOnly: true | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update the documentation after applying the other suggestions.
What this PR does / why we need it:
This PR adds support for specifying custom volumes and volumeMounts in the AdmissionWebhook createSecretJob and patchWebhookJob. The template provides the attribute
automountServiceAccountToken
. However, ifautomountServiceAccountToken
is set to false, the jobs fail. Therefore, to fix that issue,volumeMount
andvolume
needs to be set.This provides flexibility for users who need to mount additional data (e.g., certificates, configuration files, or shared volumes) into the admission webhook jobs.
Previously, these jobs did not support custom volumes or mounts, which limited use cases where external data is required during webhook secret creation or patching.
Types of changes
Which issue/s this PR fixes
fixes #13810
How Has This Been Tested?
Checklist: