diff --git a/README.md b/README.md index dccad832759a70fa8ecaeb0ee66057a35cac693b..44cc1ac5bd5d32649aacb9688a3fba0bda5d8a7e 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ infohub deployment | Key | Type | Default | Description | |-----|------|---------|-------------| | addresses.cache | string | `"http://cache:8080"` | | +| addresses.issueruri | string | `"did:tsa:123"` | | | addresses.policy | string | `"http://policy:8080"` | | | addresses.signer | string | `"http://signer:8080"` | | | autoscaling.enabled | bool | `false` | Enable autoscaling | @@ -34,10 +35,10 @@ infohub deployment | log.level | string | `"debug"` | | | metrics.enabled | bool | `true` | Enable prometheus metrics | | metrics.port | int | `2112` | Port for prometheus metrics | -| mongo.addr | string | `"mongodb://mongodb-mongodb-replicaset.infra:27017/infohub?replicaSet=rs0&authSource=admin"` | | +| mongo.addr | string | `"mongodb://mongodb-mongodb-replicaset.infra:27017/infohub?replicaSet=rs0&authSource=admin&ssl=true"` | | | mongo.dbname | string | `"infohub"` | | -| mongo.pass | string | `"root"` | | -| mongo.user | string | `"root"` | | +| mongo.pass | string | `""` | | +| mongo.user | string | `""` | | | name | string | `"infohub"` | Application name | | nameOverride | string | `""` | Ovverwrites application name | | podAnnotations | object | `{}` | | diff --git a/templates/deployment.yaml b/templates/deployment.yaml index 1aebf9e5389c8c4985c85545c034520c2d36ebf5..4a1a5d204af72c80912f88d15d4a2baeb169bf5a 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -65,7 +65,7 @@ spec: - name: SIGNER_ADDR value: {{ .Values.addresses.signer | quote }} - name: ISSUER_URI - value: {{ .Values.addresses.iisueruri| quote }} + value: {{ .Values.addresses.issueruri | quote }} {{- if .Values.extraVars }} {{ toYaml .Values.extraVars | indent 8 }} {{- end }} diff --git a/values.yaml b/values.yaml index 2d4f139c0008acc921302ff7bc26f03329b94c37..23c24d9c11c286202de47f0a1ceb1a1ba8f1b13a 100644 --- a/values.yaml +++ b/values.yaml @@ -84,7 +84,7 @@ addresses: policy: http://policy:8080 cache: http://cache:8080 signer: http://signer:8080 - issueruri: "did:tsa:123" + issueruri: did:tsa:123 ingress: enabled: true