Skip to content

Commit 7bb9350

Browse files
update some values
1 parent 7c933b2 commit 7bb9350

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

helm/fence/templates/useryaml-job.yaml

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
kind: ConfigMap
2-
apiVersion: v1
3-
metadata:
4-
name: useryaml
5-
data:
6-
useryaml: {{ .Values.USER_YAML | toYaml | nindent 4}}
7-
---
81
apiVersion: batch/v1
92
kind: Job
103
metadata:
@@ -37,7 +30,7 @@ spec:
3730
subPath: fence-config.yaml
3831
- name: "useryaml"
3932
mountPath: "/var/www/fence/user.yaml"
40-
subPath: useryaml
33+
subPath: user.yaml
4134
command: ["/bin/bash" ]
4235
args:
4336
- "-c"

helm/fence/templates/useryaml.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
kind: ConfigMap
2+
apiVersion: v1
3+
metadata:
4+
name: useryaml
5+
data:
6+
user.yaml: |
7+
{{- with .Values.USER_YAML }}
8+
{{- toYaml . | nindent 2 }}
9+
{{ end }}
10+
---

helm/fence/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ projects:
521521
# github.com:
522522

523523
# -- (string) USER YAML. Passed in as a multiline string.
524-
USER_YAML: |
524+
USER_YAML:
525525
cloud_providers: {}
526526
groups: {}
527527
authz:
@@ -1363,7 +1363,7 @@ USER_YAML: |
13631363
users:
13641364
### BEGIN INTERNS SECTION ###
13651365
### END INTERNS SECTION ###
1366-
1366+
13671367
admin: true
13681368
policies:
13691369
- data_upload

helm/gen3/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ global:
4141
# -- (string) ARN of the reverse proxy certificate.
4242
revproxyArn: arn:aws:acm:us-east-1:123456:certificate
4343
# -- (string) URL of the data dictionary.
44-
dictionaryUrl: https://s3.amazonaws.com/dictionary-artifacts/datadictionary/develop/schema.json
44+
dictionaryUrl: http://s3.amazonaws.com/dictionary-artifacts/midrc_dictionary/1.2.7/schema.json
4545
# -- (string) Portal application name.
4646
portalApp: gitops
4747
# -- (bool) Whether public datasets are enabled.

0 commit comments

Comments
 (0)