diff options
Diffstat (limited to 'chart')
| -rw-r--r-- | chart/Chart.yml (renamed from chart/Chart.yaml) | 0 | ||||
| -rw-r--r-- | chart/files/default.yml | 11 | ||||
| -rw-r--r-- | chart/templates/ConfigMap.yml | 5 | ||||
| -rw-r--r-- | chart/templates/Deployment.yml | 11 | ||||
| -rw-r--r-- | chart/values.yml | 3 |
5 files changed, 18 insertions, 12 deletions
diff --git a/chart/Chart.yaml b/chart/Chart.yml index 8f31cf7fb4..8f31cf7fb4 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yml diff --git a/chart/files/default.yml b/chart/files/default.yml index 276e9f8915..a9ef22f424 100644 --- a/chart/files/default.yml +++ b/chart/files/default.yml @@ -6,7 +6,7 @@ #───┘ URL └───────────────────────────────────────────────────── # Final accessible URL seen by a user. -url: https://example.tld/ +# url: https://example.tld/ # ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE # URL SETTINGS AFTER THAT! @@ -41,7 +41,7 @@ url: https://example.tld/ # You need to set Certificate in 'https' section. # To use option 1, uncomment below line. -port: 3000 # A port that your Misskey server should listen. +port: 3000 # A port that your Misskey server should listen. # To use option 2, uncomment below lines. #port: 443 @@ -89,8 +89,8 @@ redis: # host: localhost # port: 9200 # ssl: false -# user: -# pass: +# user: +# pass: # ┌───────────────┐ #───┘ ID generation └─────────────────────────────────────────── @@ -108,8 +108,7 @@ redis: # ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE # ID SETTINGS AFTER THAT! -id: 'aid' - +id: "aid" # ┌─────────────────────┐ #───┘ Other configuration └───────────────────────────────────── diff --git a/chart/templates/ConfigMap.yml b/chart/templates/ConfigMap.yml index 51a9c256ce..37c25e0864 100644 --- a/chart/templates/ConfigMap.yml +++ b/chart/templates/ConfigMap.yml @@ -1,7 +1,8 @@ apiVersion: v1 kind: ConfigMap metadata: - name: {{ include "misskey.fullname" . }}-config-file + name: {{ include "misskey.fullname" . }}-configuration data: default.yml: |- -{{ .Files.Get "files/default.yml"|indent 4 }} + {{ .Files.Get "files/default.yml"|nindent 4 }} + url: {{ .Values.url }} diff --git a/chart/templates/Deployment.yml b/chart/templates/Deployment.yml index 8ead4d7a9c..d16aece915 100644 --- a/chart/templates/Deployment.yml +++ b/chart/templates/Deployment.yml @@ -16,9 +16,12 @@ spec: spec: containers: - name: misskey - image: okteto.dev/misskey:latest + image: {{ .Values.image }} + env: + - name: NODE_ENV + value: {{ .Values.environment }} volumeMounts: - - name: config-file + - name: {{ include "misskey.fullname" . }}-configuration mountPath: /misskey/.config readOnly: true ports: @@ -39,6 +42,6 @@ spec: ports: - containerPort: 6379 volumes: - - name: config-file + - name: {{ include "misskey.fullname" . }}-configuration configMap: - name: {{ include "misskey.fullname" . }}-config-file + name: {{ include "misskey.fullname" . }}-configuration diff --git a/chart/values.yml b/chart/values.yml new file mode 100644 index 0000000000..a7031538a9 --- /dev/null +++ b/chart/values.yml @@ -0,0 +1,3 @@ +url: https://example.tld/ +image: okteto.dev/misskey +environment: production |