mirror of
https://github.com/Sheldan/Sissi.git
synced 2026-01-03 16:27:48 +00:00
11 lines
553 B
YAML
11 lines
553 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: api-keys
|
|
data:
|
|
discordToken: {{ $.Values.apiKeys.discord.token | b64enc }} # b64enc is needed, because a stringData secret field cannot hold numeric values
|
|
youtubeApiKey: {{ $.Values.apiKeys.youtube.apiKey | b64enc }}
|
|
twitchClientId: {{ $.Values.apiKeys.twitch.clientId | b64enc }}
|
|
twitchSecret: {{ $.Values.apiKeys.twitch.secret | b64enc }}
|
|
openWeatherMapApiKey: {{ $.Values.apiKeys.openWeatherMap.apiKey | b64enc }}
|
|
freeCurrencyApiApiKey: {{ $.Values.apiKeys.freeCurrencyApi.apiKey | b64enc }} |