mirror of
https://github.com/bitnami/charts.git
synced 2026-02-27 15:37:06 +08:00
[bitnami/wildfly]: add serviceAccountName property (#11706)
* feat: [bitnami/wildfly] - add serviceAccountName property to deployment manifest Signed-off-by: Tom Albrecht <dev@talbx.de> * docs: [bitnami/wildfly] - added default values and description for serviceAccountName Signed-off-by: Tom Albrecht <dev@talbx.de> * docs: [bitnami/wildfly] - readme regenerated Signed-off-by: Tom Albrecht <dev@talbx.de> Signed-off-by: Tom Albrecht <dev@talbx.de>
This commit is contained in:
@@ -26,4 +26,4 @@ name: wildfly
|
||||
sources:
|
||||
- https://github.com/bitnami/containers/tree/main/bitnami/wildfly
|
||||
- http://wildfly.org
|
||||
version: 13.3.15
|
||||
version: 13.4.0
|
||||
|
||||
@@ -82,14 +82,14 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
|
||||
### WildFly Image parameters
|
||||
|
||||
| Name | Description | Value |
|
||||
| ------------------- | -------------------------------------------------- | --------------------- |
|
||||
| `image.registry` | WildFly image registry | `docker.io` |
|
||||
| `image.repository` | WildFly image repository | `bitnami/wildfly` |
|
||||
| `image.tag` | WildFly image tag (immutable tags are recommended) | `26.1.1-debian-11-r0` |
|
||||
| `image.pullPolicy` | WildFly image pull policy | `IfNotPresent` |
|
||||
| `image.pullSecrets` | WildFly image pull secrets | `[]` |
|
||||
| `image.debug` | Enable image debug mode | `false` |
|
||||
| Name | Description | Value |
|
||||
| ------------------- | -------------------------------------------------- | ---------------------- |
|
||||
| `image.registry` | WildFly image registry | `docker.io` |
|
||||
| `image.repository` | WildFly image repository | `bitnami/wildfly` |
|
||||
| `image.tag` | WildFly image tag (immutable tags are recommended) | `26.1.1-debian-11-r26` |
|
||||
| `image.pullPolicy` | WildFly image pull policy | `IfNotPresent` |
|
||||
| `image.pullSecrets` | WildFly image pull secrets | `[]` |
|
||||
| `image.debug` | Enable image debug mode | `false` |
|
||||
|
||||
|
||||
### WildFly Configuration parameters
|
||||
@@ -116,6 +116,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `hostAliases` | WildFly pod host aliases | `[]` |
|
||||
| `extraVolumes` | Optionally specify extra list of additional volumes for WildFly pods | `[]` |
|
||||
| `extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for WildFly container(s) | `[]` |
|
||||
| `serviceAccountName` | Name of existing ServiceAccount to be connected | `""` |
|
||||
| `sidecars` | Add additional sidecar containers to the WildFly pod | `[]` |
|
||||
| `initContainers` | Add additional init containers to the WildFly pods | `[]` |
|
||||
| `podLabels` | Extra labels for WildFly pods | `{}` |
|
||||
@@ -218,7 +219,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `volumePermissions.enabled` | Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` | `false` |
|
||||
| `volumePermissions.image.registry` | Bitnami Shell image registry | `docker.io` |
|
||||
| `volumePermissions.image.repository` | Bitnami Shell image repository | `bitnami/bitnami-shell` |
|
||||
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `11-debian-11-r0` |
|
||||
| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `11-debian-11-r23` |
|
||||
| `volumePermissions.image.pullPolicy` | Bitnami Shell image pull policy | `IfNotPresent` |
|
||||
| `volumePermissions.image.pullSecrets` | Bitnami Shell image pull secrets | `[]` |
|
||||
| `volumePermissions.resources.limits` | The resources limits for the init container | `{}` |
|
||||
|
||||
@@ -31,6 +31,9 @@ spec:
|
||||
{{- if .Values.hostAliases }}
|
||||
hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.serviceAccountName }}
|
||||
serviceAccountName: {{ .Values.serviceAccountName }}
|
||||
{{- end }}
|
||||
{{- if .Values.affinity }}
|
||||
affinity: {{- include "common.tplvalues.render" (dict "value" .Values.affinity "context" $) | nindent 8 }}
|
||||
{{- else }}
|
||||
|
||||
@@ -150,6 +150,8 @@ extraVolumes: []
|
||||
## @param extraVolumeMounts [array] Optionally specify extra list of additional volumeMounts for WildFly container(s)
|
||||
##
|
||||
extraVolumeMounts: []
|
||||
## @param serviceAccountName Name of existing ServiceAccount to be connected
|
||||
serviceAccountName: ""
|
||||
## @param sidecars [array] Add additional sidecar containers to the WildFly pod
|
||||
## e.g:
|
||||
## sidecars:
|
||||
|
||||
Reference in New Issue
Block a user