You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Chart can be installed quickly and easily to a Kubernetes cluster. Since an _Ingress_ is added as part of the default install of the Chart, the `ingress.host` Value must be specified.
25
19
26
-
Install the Chart using the following command from the root of this directory:
20
+
Install the Chart using the following command from the root of this directory:
| defaultPodSecurityContext | object | `{"seccompProfile":{"type":"RuntimeDefault"}}` | Default Security Context for the Pod when one is not provided |
84
78
| defaultSecurityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"runAsNonRoot":true}` | Default Security Context for the Container when one is not provided |
79
+
| extraArgs | list | `[]` | Useful for passing TLS keys or other configuration options. |
85
80
| extraContainers | list | `[]` | Each container is defined as a complete container spec. |
86
81
| extraVolumeMounts | list | `[]` | Additional volumeMounts on the output Deployment definition. |
87
82
| extraVolumes | list | `[]` | Additional volumes on the output Deployment definition. |
@@ -92,6 +87,24 @@ Each container accepts any valid Kubernetes container field including `image`, `
92
87
| imagePullSecrets | list | `[]` | This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ |
93
88
| ingress | object | `{"annotations":{},"className":"","enabled":true,"host":"","hosts":null,"path":"/","pathType":"ImplementationSpecific","termination":"edge","tls":null}` | This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/ |
94
89
| livenessProbe | object | `{"httpGet":{"path":"/healthz","port":"http"}}` | Liveness and readiness probes for the container. |
| openshift | bool | `false` | Enable OpenShift specific features |
@@ -109,8 +122,10 @@ Each container accepts any valid Kubernetes container field including `image`, `
109
122
| replicaCount | int | `1` | This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ |
110
123
| resources | object | `{"limits":{"cpu":"100m","memory":"128Mi"},"requests":{"cpu":"100m","memory":"128Mi"}}` | Resource requests and limits for the container. |
111
124
| securityContext | object | `{}` | Define the Security Context for the Container |
112
-
| service | object | `{"port":8080,"type":"ClusterIP"}` | This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/ |
125
+
| service | object | `{"annotations":{},"port":8080,"targetPort":"http","type":"ClusterIP"}` | This is for setting up a service more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/ |
126
+
| service.annotations | object | `{}` | Annotations to add to the service |
113
127
| service.port | int | `8080` | This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports |
128
+
| service.targetPort | string | `"http"` | Use this to remap the service port to a different container port. |
114
129
| service.type | string | `"ClusterIP"` | This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types |
115
130
| serviceAccount | object | `{"annotations":{},"create":true,"name":""}` | This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/ |
116
131
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
@@ -120,7 +135,7 @@ Each container accepts any valid Kubernetes container field including `image`, `
120
135
121
136
## Updating the README
122
137
123
-
The contents of the README.md file is generated using [helm-docs](https://github.com/norwoodj/helm-docs). Whenever changes are introduced to the Chart and its _Values_, the documentation should be regenerated.
138
+
The contents of the README.md file is generated using [helm-docs](https://github.com/norwoodj/helm-docs). Whenever changes are introduced to the Chart and its _Values_, the documentation should be regenerated.
124
139
125
140
Execute the following command to regenerate the documentation from within the Helm Chart directory.
0 commit comments