mirror of
https://github.com/Sheldan/OnePlusBot.git
synced 2026-04-09 19:06:49 +00:00
[OPB-xxx] updating abstracto version to 1.5.57
adding config for currency conversion fixing ban message template folder name
This commit is contained in:
2
.env
2
.env
@@ -1,4 +1,4 @@
|
|||||||
REGISTRY_PREFIX=harbor.sheldan.dev/oneplus-bot/
|
REGISTRY_PREFIX=harbor.sheldan.dev/oneplus-bot/
|
||||||
ABSTRACTO_PREFIX=harbor.sheldan.dev/abstracto/
|
ABSTRACTO_PREFIX=harbor.sheldan.dev/abstracto/
|
||||||
VERSION=1.6.34
|
VERSION=1.6.34
|
||||||
ABSTRACTO_VERSION=1.5.51
|
ABSTRACTO_VERSION=1.5.57
|
||||||
@@ -4,4 +4,5 @@ metadata:
|
|||||||
name: api-keys
|
name: api-keys
|
||||||
data:
|
data:
|
||||||
discordToken: {{ $.Values.apiKeys.discord.token | b64enc }} # b64enc is needed, because a stringData secret field cannot hold numeric values
|
discordToken: {{ $.Values.apiKeys.discord.token | b64enc }} # b64enc is needed, because a stringData secret field cannot hold numeric values
|
||||||
youtubeApiKey: {{ $.Values.apiKeys.youtube.apiKey | b64enc }}
|
youtubeApiKey: {{ $.Values.apiKeys.youtube.apiKey | b64enc }}
|
||||||
|
freeCurrencyApiApiKey: {{ $.Values.apiKeys.freeCurrencyApi.apiKey | b64enc }}
|
||||||
@@ -75,6 +75,11 @@ spec:
|
|||||||
key: youtubeApiKey
|
key: youtubeApiKey
|
||||||
- name: PRIVATE_REST_API_HOST
|
- name: PRIVATE_REST_API_HOST
|
||||||
value: "{{ .Values.privateRestApi.service.name }}.{{ .Release.Namespace }}.svc.cluster.local"
|
value: "{{ .Values.privateRestApi.service.name }}.{{ .Release.Namespace }}.svc.cluster.local"
|
||||||
|
- name: FREE_CURRENCY_API_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: api-keys
|
||||||
|
key: freeCurrencyApiApiKey
|
||||||
- name: PRIVATE_REST_API_PORT
|
- name: PRIVATE_REST_API_PORT
|
||||||
value: "{{ .Values.privateRestApi.service.targetPort }}"
|
value: "{{ .Values.privateRestApi.service.targetPort }}"
|
||||||
- name: FRONTEND_BASE
|
- name: FRONTEND_BASE
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ templateDeployment:
|
|||||||
repository: harbor.sheldan.dev/abstracto
|
repository: harbor.sheldan.dev/abstracto
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
image: abstracto-template-deployment
|
image: abstracto-template-deployment
|
||||||
tag: 1.5.51
|
tag: 1.5.57
|
||||||
templateDeploymentData:
|
templateDeploymentData:
|
||||||
repository: harbor.sheldan.dev/oneplus-bot
|
repository: harbor.sheldan.dev/oneplus-bot
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
@@ -33,7 +33,7 @@ dbConfigDeployment:
|
|||||||
repository: harbor.sheldan.dev/abstracto
|
repository: harbor.sheldan.dev/abstracto
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
image: abstracto-db-deployment
|
image: abstracto-db-deployment
|
||||||
tag: 1.5.51
|
tag: 1.5.57
|
||||||
dbConfigDeploymentData:
|
dbConfigDeploymentData:
|
||||||
repository: harbor.sheldan.dev/oneplus-bot
|
repository: harbor.sheldan.dev/oneplus-bot
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
@@ -138,6 +138,8 @@ apiKeys:
|
|||||||
twitch:
|
twitch:
|
||||||
secret: null
|
secret: null
|
||||||
clientId: null
|
clientId: null
|
||||||
|
freeCurrencyApi:
|
||||||
|
apiKey: null
|
||||||
imagePullSecrets: null
|
imagePullSecrets: null
|
||||||
nameOverride: ''
|
nameOverride: ''
|
||||||
fullnameOverride: ''
|
fullnameOverride: ''
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@@ -17,8 +17,8 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.target>17</maven.compiler.target>
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
<abstracto.version>1.5.51</abstracto.version>
|
<abstracto.version>1.5.57</abstracto.version>
|
||||||
<abstracto.templates.version>1.4.46</abstracto.templates.version>
|
<abstracto.templates.version>1.4.49</abstracto.templates.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
|||||||
Reference in New Issue
Block a user