Skip to content

Commit 98ee61e

Browse files
committed
fix template quotes
1 parent b76fe6d commit 98ee61e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -942,8 +942,8 @@ default_datastore_crypto_key:
942942
# randBytes returns a base64 encoded string.
943943
hmacKey:
944944
# this formula is based on an st2-specific version of python's base64.urlsafe_b64encode.
945-
hmacKeyString: "{{ randBytes 32 | replace '+' '-' | replace '_' '/' | replace '=' '' }}"
945+
hmacKeyString: '{{ randBytes 32 | replace "+" "-" | replace "_" "/" | replace "=" "" }}'
946946
size: 256
947-
aesKeyString: "{{ randBytes 32 | replace '+' '-' | replace '_' '/' | replace '=' '' }}"
947+
aesKeyString: '{{ randBytes 32 | replace "+" "-" | replace "_" "/" | replace "=" "" }}'
948948
mode: CBC
949949
size: 256

0 commit comments

Comments
 (0)