|
5 | 5 | includes: |
6 | 6 | # -- List of dynamic plugins included inside the `janus-idp/backstage-showcase` container image, some of which are disabled by default. |
7 | 7 | # This file ONLY works with the `janus-idp/backstage-showcase` container image. |
8 | | - - 'dynamic-plugins.default.yaml' |
| 8 | + - "dynamic-plugins.default.yaml" |
9 | 9 |
|
10 | 10 | # -- List of dynamic plugins, possibly overriding the plugins listed in `includes` files. |
11 | 11 | # Every item defines the plugin `package` as a [NPM package spec](https://docs.npmjs.com/cli/v10/using-npm/package-spec), |
@@ -134,12 +134,14 @@ upstream: |
134 | 134 | name: '{{- include "janus-idp.postgresql.secretName" . }}' |
135 | 135 | args: |
136 | 136 | # This additional `app-config`` file is generated by the initContainer below, and contains the merged configuration of installed dynamic plugins. |
137 | | - - '--config' |
| 137 | + - "--config" |
138 | 138 | - dynamic-plugins-root/app-config.dynamic-plugins.yaml |
139 | 139 | extraVolumeMounts: |
140 | 140 | # The initContainer below will install dynamic plugins in this volume mount. |
141 | 141 | - name: dynamic-plugins-root |
142 | 142 | mountPath: /opt/app-root/src/dynamic-plugins-root |
| 143 | + - name: temp |
| 144 | + mountPath: /tmp |
143 | 145 | extraVolumes: |
144 | 146 | - name: dynamic-plugins-root |
145 | 147 | persistentVolumeClaim: |
@@ -167,6 +169,8 @@ upstream: |
167 | 169 | secretName: '{{ printf "%s-dynamic-plugins-registry-auth" .Release.Name }}' |
168 | 170 | - name: npmcacache |
169 | 171 | emptyDir: {} |
| 172 | + - name: temp |
| 173 | + emptyDir: {} |
170 | 174 | initContainers: |
171 | 175 | - name: install-dynamic-plugins |
172 | 176 | resources: |
@@ -211,6 +215,8 @@ upstream: |
211 | 215 | readOnly: true |
212 | 216 | - mountPath: /opt/app-root/src/.npm/_cacache |
213 | 217 | name: npmcacache |
| 218 | + - name: temp |
| 219 | + mountPath: /tmp |
214 | 220 | workingDir: /opt/app-root/src |
215 | 221 | installDir: /opt/app-root/src |
216 | 222 | podAnnotations: |
|
0 commit comments