Skip to content

Commit

Permalink
Fixup comment formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
willmostly committed Nov 22, 2024
1 parent b636214 commit b24e012
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions charts/gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,23 @@ image:
# ```
imagePullSecrets: []

# Provide a list of secrets and configmaps to mount into the init container as environment variables.
# -- Provide a list of secrets and configmaps to mount into the init container as environment variables.
# @raw
# Example:
# ```envFrom:
# - secretRef:
# name: test-secret
# ```
# These environment variables may be interpolated into the configuration file by using
# ${ENV:VAR_NAME} in place of a raw value. Example:
# kubectl create secret generic test-secret --from-literal=DB_USER='me' --from-literal=DB_PASSWORD='39528$vdg7Jb'
# `${ENV:VAR_NAME}` in place of a raw value. Example:
# ```kubectl create secret generic test-secret --from-literal=DB_USER='me' --from-literal=DB_PASSWORD='39528$vdg7Jb'
#
#envFrom:
# - secretRef:
# name: test-secret
#
# dataStore:
# jdbcUrl: jdbc:postgresql://localhost:5432/gateway
# user: ${ENV:DB_USER}
# password: ${ENV:DB_PASSWORD}
# driver: org.postgresql.Driver
# dataStore:
# jdbcUrl: jdbc:postgresql://localhost:5432/gateway
# user: ${ENV:DB_USER}
# password: ${ENV:DB_PASSWORD}
# driver: org.postgresql.Driver
# ```
envFrom: []

config:
Expand Down

0 comments on commit b24e012

Please sign in to comment.