From 1b4cbba1bca7c74672033222ec2a71ffb1b98ae8 Mon Sep 17 00:00:00 2001 From: Valeri Fikov <valeri.fikov@vereign.com> Date: Tue, 21 Jun 2022 13:25:45 +0300 Subject: [PATCH] README changes --- README.md | 7 ++++--- templates/deployment.yaml | 2 +- values.yaml | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index dccad83..44cc1ac 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 1aebf9e..4a1a5d2 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 2d4f139..23c24d9 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 -- GitLab