File tree Expand file tree Collapse file tree 6 files changed +10
-1
lines changed
Expand file tree Collapse file tree 6 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ description: Meet Plane. An Enterprise software development tool to manage issue
55
66type : application
77
8- version : 1.2.0
8+ version : 1.2.1
99appVersion : " 1.9.1"
1010
1111home : https://plane.so/
Original file line number Diff line number Diff line change 267267| env.silo_envs.sentry_environment | | | Sentry Environment |
268268| env.silo_envs.sentry_traces_sample_rate | | | Sentry Traces Sample Rate |
269269| env.silo_envs.hmac_secret_key | <random-32-bit-string> | | HMAC Secret Key |
270+ | env.silo_envs.aes_secret_key | "dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr" | | AES Secret Key |
270271
271272
272273### Worker Deployment
Original file line number Diff line number Diff line change @@ -249,6 +249,10 @@ questions:
249249 label : " Silo HMAC Secret Key"
250250 type : string
251251 default : " "
252+ - variable : env.silo_envs.aes_secret_key
253+ label : " Silo AES Secret Key"
254+ type : string
255+ default : " dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr"
252256 - variable : env.silo_envs.cors_allowed_origins
253257 label : " Silo CORS Allowed Origins"
254258 type : string
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ metadata:
77 name : {{ .Release.Name }}-app-secrets
88stringData :
99 SECRET_KEY : {{ .Values.env.secret_key | default "60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5" | quote }}
10+ AES_SECRET_KEY : {{ .Values.env.silo_envs.aes_secret_key | default "dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr" | quote }}
1011 LIVE_SERVER_SECRET_KEY : {{ .Values.env.live_server_secret_key | default "htbqvBJAgpm9bzvf3r4urJer0ENReatceh" | quote }}
1112
1213 {{- if .Values.services.redis.local_setup }}
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ stringData:
1515 SILO_HMAC_SECRET_KEY : {{ randAlphaNum 32 | quote }}
1616 {{- end }}
1717
18+ AES_SECRET_KEY : {{ .Values.env.silo_envs.aes_secret_key | default "dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr" | quote }}
19+
1820 {{- if .Values.services.postgres.local_setup }}
1921 DATABASE_URL : " postgresql://{{ .Values.env.pgdb_username }}:{{ .Values.env.pgdb_password }}@{{ .Release.Name }}-pgdb.{{ .Release.Namespace }}.svc.{{ .Values.env.default_cluster_domain | default " cluster.local" }}/{{ .Values.env.pgdb_name }}"
2022 {{- else if .Values.env.pgdb_remote_url }}
Original file line number Diff line number Diff line change 204204 mq_prefetch_count : 1
205205 request_interval : 400
206206 hmac_secret_key : ' '
207+ aes_secret_key : ' dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr'
207208 cors_allowed_origins : ' '
You can’t perform that action at this time.
0 commit comments