Skip to content

Commit

Permalink
Wrap secret values in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalissaac committed Dec 18, 2022
1 parent 948309a commit 752cdf6
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions kubernetes/ocfapi.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,22 @@ metadata:
name: api-config
type: Opaque
stringData:
calnet_jwt_secret: <%= calnet_jwt_secret %>
celery_backend: <%= celery_backend %>
celery_broker: <%= celery_broker %>
github_webhooksecret: <%= github_webhooksecret %>
ocfgitdeployments_db: <%= ocfgitdeployments_db %>
ocfgitdeployments_password: <%= ocfgitdeployments_password %>
ocfgitdeployments_user: <%= ocfgitdeployments_user %>
ocfmail_db: <%= ocfmail_db %>
ocfmail_password: <%= ocfmail_password %>
ocfmail_user: <%= ocfmail_user %>
ocfprinting_db: <%= ocfprinting_db %>
ocfprinting_password: <%= ocfprinting_password %>
ocfprinting_user: <%= ocfprinting_user %>
ocfstats_db: <%= ocfstats_db %>
ocfstats_password: <%= ocfstats_password %>
ocfstats_user: <%= ocfstats_user %>
redis_host: <%= redis_host %>
redis_password: <%= redis_password %>
redis_port: <%= redis_port %>
calnet_jwt_secret: "<%= calnet_jwt_secret %>"
celery_backend: "<%= celery_backend %>"
celery_broker: "<%= celery_broker %>"
github_webhooksecret: "<%= github_webhooksecret %>"
ocfgitdeployments_db: "<%= ocfgitdeployments_db %>"
ocfgitdeployments_password: "<%= ocfgitdeployments_password %>"
ocfgitdeployments_user: "<%= ocfgitdeployments_user %>"
ocfmail_db: "<%= ocfmail_db %>"
ocfmail_password: "<%= ocfmail_password %>"
ocfmail_user: "<%= ocfmail_user %>"
ocfprinting_db: "<%= ocfprinting_db %>"
ocfprinting_password: "<%= ocfprinting_password %>"
ocfprinting_user: "<%= ocfprinting_user %>"
ocfstats_db: "<%= ocfstats_db %>"
ocfstats_password: "<%= ocfstats_password %>"
ocfstats_user: "<%= ocfstats_user %>"
redis_host: "<%= redis_host %>"
redis_password: "<%= redis_password %>"
redis_port: "<%= redis_port %>"

0 comments on commit 752cdf6

Please sign in to comment.