mirror of
https://github.com/bitnami/charts.git
synced 2026-02-19 19:47:22 +08:00
[bitnami/jenkins] Add hostAliases (#5246)
This commit is contained in:
committed by
GitHub
parent
e49b3b5f6c
commit
e38956cd40
@@ -26,4 +26,4 @@ name: jenkins
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-jenkins
|
||||
- https://jenkins.io/
|
||||
version: 7.2.2
|
||||
version: 7.3.0
|
||||
|
||||
@@ -95,6 +95,7 @@ The following tables lists the configurable parameters of the Jenkins chart and
|
||||
|-----------------------------|-------------------------------------------------------------------------------------------|---------------------------------------------|
|
||||
| `podSecurityContext` | Jenkins pods' Security Context | Check `values.yaml` file |
|
||||
| `containerSecurityContext` | Jenkins containers' Security Context | Check `values.yaml` file |
|
||||
| `hostAliases` | Add deployment host aliases | `[]` |
|
||||
| `resources.limits` | The resources limits for the Jenkins container | `{}` |
|
||||
| `resources.requests` | The requested resources for the Jenkins container | `{ cpu: "300m", memory: "512Mi" }` |
|
||||
| `livenessProbe` | Liveness probe configuration for Jenkins | Check `values.yaml` file |
|
||||
|
||||
@@ -31,6 +31,9 @@ spec:
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- include "jenkins.imagePullSecrets" . | nindent 6 }}
|
||||
{{- if .Values.hostAliases }}
|
||||
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.affinity }}
|
||||
affinity: {{- include "common.tplvalues.render" (dict "value" .Values.affinity "context" $) | nindent 8 }}
|
||||
{{- else }}
|
||||
|
||||
@@ -41,6 +41,11 @@ kubeVersion:
|
||||
##
|
||||
# fullnameOverride:
|
||||
|
||||
## Deployment pod host aliases
|
||||
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
|
||||
##
|
||||
hostAliases: []
|
||||
|
||||
## Add labels to all the deployed resources
|
||||
##
|
||||
commonLabels: {}
|
||||
|
||||
Reference in New Issue
Block a user