Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 53fe58d

Browse files
committed
ubuntu
1 parent 34bf8db commit 53fe58d

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

charts/ubuntu/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type: application
2222
# This is the chart version. This version number should be incremented each time you make changes
2323
# to the chart and its templates, including the app version.
2424
# Versions are expected to follow Semantic Versioning (https://semver.org/)
25-
version: 5.4.4
25+
version: 5.4.5
2626

2727
# This is the version number of the application being deployed. This version number should be
2828
# incremented each time you make changes to the application. Versions are not expected to
@@ -31,5 +31,5 @@ appVersion: latest
3131

3232
dependencies:
3333
- name: library-chart
34-
version: 2.1.0
35-
repository: https://inseefrlab.github.io/helm-charts-datascience
34+
version: 1.5.25
35+
repository: https://inseefrlab.github.io/helm-charts-interactive-services

charts/ubuntu/templates/configmap-git.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

charts/ubuntu/templates/configmap-s3.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

charts/ubuntu/templates/configmap-vault.yaml

Lines changed: 0 additions & 1 deletion
This file was deleted.

charts/ubuntu/templates/deployment.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ spec:
6868
{{- end }}
6969
envFrom:
7070
{{- if .Values.s3.enabled }}
71-
- configMapRef:
72-
name: {{ include "library-chart.configMapNameS3" . }}
71+
- secretRef:
72+
name: {{ include "library-chart.secretNameS3" . }}
7373
{{- end }}
7474
{{- if .Values.vault.enabled }}
75-
- configMapRef:
76-
name: {{ include "library-chart.configMapNameVault" . }}
75+
- secretRef:
76+
name: {{ include "library-chart.secretNameVault" . }}
7777
{{- end }}
7878
{{- if .Values.git.enabled }}
79-
- configMapRef:
80-
name: {{ include "library-chart.configMapNameGit" . }}
79+
- secretRef:
80+
name: {{ include "library-chart.secretNameGit" . }}
8181
{{- end }}
8282
ports:
8383
- name: http
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ include "library-chart.secretGit" . }}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ include "library-chart.secretS3" . }}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ include "library-chart.secretVault" . }}

charts/ubuntu/values.schema.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,20 +153,17 @@
153153
}
154154
},
155155
"security": {
156-
"description": "RStudio specific configuration",
156+
"description": "security specific configuration",
157157
"type": "object",
158158
"properties": {
159159
"password": {
160160
"type": "string",
161161
"description": "Password",
162162
"default": "changeme",
163-
"x-form": {
164-
"value": "{{project.password}}"
165-
},
166163
"x-onyxia": {
167-
"overwriteDefaultWith": "{{project.password}}"
168-
}
169-
},
164+
"overwriteDefaultWith": "{{service.oneTimePassword}}",
165+
"overwriteSchemaWith": "ide/password"
166+
} },
170167
"allowlist": {
171168
"type": "object",
172169
"description": "IP protection",
@@ -204,6 +201,9 @@
204201
"networkPolicy": {
205202
"type": "object",
206203
"description": "Define access policy to the service",
204+
"x-onyxia": {
205+
"overwriteSchemaWith": "network-policy.json"
206+
},
207207
"properties": {
208208
"enabled": {
209209
"type": "boolean",

0 commit comments

Comments
 (0)