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
| backstage.extraVolumes | Backstage container additional volumes | list |`[]`|
100
+
| backstage.image.debug | Set to true if you would like to see extra information on logs | bool |`false`|
101
+
| backstage.image.pullPolicy | Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' <br /> Ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images| string |`"Always"`|
102
+
| backstage.image.pullSecrets | Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. <br /> Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ <br /> E.g: `pullSecrets: [myRegistryKeySecretName]`| list |`[]`|
| backstage.image.tag | Backstage image tag (immutable tags are recommended) | string |`"latest"`|
106
+
| backstage.initContainers | Backstage container init containers | list |`[]`|
107
+
| backstage.podSecurityContext | Security settings for a Pod. The security settings that you specify for a Pod apply to all Containers in the Pod. <br /> Ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod| object |`{}`|
| global | Global parameters Global Docker image parameters Please, note that this will override the image parameters, including dependencies, configured to use the global value Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass | object | See below |
119
+
| global.imagePullSecrets | Global Docker registry secret names as an array </br> E.g. `imagePullSecrets: [myRegistryKeySecretName]`| list |`[]`|
120
+
| global.imageRegistry | Global Docker image registry | string |`""`|
| postgresql.auth | The authentication details of the Postgres database | object |`{"existingSecret":"","password":"","secretKeys":{"adminPasswordKey":"admin-password","replicationPasswordKey":"replication-password","userPasswordKey":"user-password"},"username":"bn_backstage"}`|
133
138
| postgresql.auth.existingSecret | Name of existing secret to use for PostgreSQL credentials | string |`""`|
@@ -138,17 +143,18 @@ The command removes all the Kubernetes components associated with the chart and
138
143
| postgresql.auth.secretKeys.userPasswordKey | The key in which Postgres will look for, for the user password, in the existing Secret | string |`"user-password"`|
139
144
| postgresql.auth.username | Name for a custom user to create | string |`"bn_backstage"`|
140
145
| postgresql.enabled | Switch to enable or disable the PostgreSQL helm chart | bool |`false`|
| service.nodePorts | Node port for the Backstage client connections Choose port between `30000-32767`| object |`{"backend":""}`|
154
+
| service.ports | Backstage svc port for client connections | object |`{"backend":7007}`|
155
+
| service.sessionAffinity | Control where client requests go, to the same pod or round-robin (values: `ClientIP` or `None`) <br /> Ref: https://kubernetes.io/docs/user-guide/services/| string |`"None"`|
156
+
| service.type | Kubernetes Service type | string |`"ClusterIP"`|
157
+
| serviceAccount | Service Account Configuration | object | See below |
152
158
| serviceAccount.annotations | Additional custom annotations for the ServiceAccount. | object |`{}`|
153
159
| serviceAccount.automountServiceAccountToken | Auto-mount the service account token in the pod | bool |`true`|
154
160
| serviceAccount.create | Enable the creation of a ServiceAccount for Backstage pods | bool |`false`|
0 commit comments