Skip to content

Commit a789b72

Browse files
update some values
1 parent 87a0726 commit a789b72

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
@@ -476,7 +476,7 @@ projects:
476476
# github.com:
477477

478478
# -- (string) USER YAML. Passed in as a multiline string.
479-
USER_YAML: |
479+
USER_YAML:
480480
cloud_providers: {}
481481
groups: {}
482482
authz:
@@ -1318,7 +1318,7 @@ USER_YAML: |
13181318
users:
13191319
### BEGIN INTERNS SECTION ###
13201320
### END INTERNS SECTION ###
1321-
1321+
13221322
admin: true
13231323
policies:
13241324
- data_upload

helm/gen3/values.yaml

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

0 commit comments

Comments
 (0)