mirror of
https://github.com/Sheldan/Sissi.git
synced 2026-01-01 23:35:21 +00:00
[SIS-xxx] updating abstracto version to contain the currency conversion
adding configuration necessary for currency conversion
This commit is contained in:
2
.env
2
.env
@@ -1,4 +1,4 @@
|
|||||||
REGISTRY_PREFIX=harbor.sheldan.dev/sissi/
|
REGISTRY_PREFIX=harbor.sheldan.dev/sissi/
|
||||||
ABSTRACTO_PREFIX=harbor.sheldan.dev/abstracto/
|
ABSTRACTO_PREFIX=harbor.sheldan.dev/abstracto/
|
||||||
VERSION=1.4.70
|
VERSION=1.4.70
|
||||||
ABSTRACTO_VERSION=1.5.56
|
ABSTRACTO_VERSION=1.5.57
|
||||||
@@ -7,4 +7,5 @@ data:
|
|||||||
youtubeApiKey: {{ $.Values.apiKeys.youtube.apiKey | b64enc }}
|
youtubeApiKey: {{ $.Values.apiKeys.youtube.apiKey | b64enc }}
|
||||||
twitchClientId: {{ $.Values.apiKeys.twitch.clientId | b64enc }}
|
twitchClientId: {{ $.Values.apiKeys.twitch.clientId | b64enc }}
|
||||||
twitchSecret: {{ $.Values.apiKeys.twitch.secret | b64enc }}
|
twitchSecret: {{ $.Values.apiKeys.twitch.secret | b64enc }}
|
||||||
openWeatherMapApiKey: {{ $.Values.apiKeys.openWeatherMap.apiKey | b64enc }}
|
openWeatherMapApiKey: {{ $.Values.apiKeys.openWeatherMap.apiKey | b64enc }}
|
||||||
|
freeCurrencyApiApiKey: {{ $.Values.apiKeys.freeCurrencyApi.apiKey | b64enc }}
|
||||||
@@ -78,6 +78,11 @@ spec:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: api-keys
|
name: api-keys
|
||||||
key: openWeatherMapApiKey
|
key: openWeatherMapApiKey
|
||||||
|
- name: FREE_CURRENCY_API_API_KEY
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: api-keys
|
||||||
|
key: freeCurrencyApiApiKey
|
||||||
- name: TWITCH_CLIENT_ID
|
- name: TWITCH_CLIENT_ID
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
|||||||
@@ -93,7 +93,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.56
|
tag: 1.5.57
|
||||||
templateDeploymentData:
|
templateDeploymentData:
|
||||||
repository: harbor.sheldan.dev/sissi
|
repository: harbor.sheldan.dev/sissi
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
@@ -104,7 +104,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.56
|
tag: 1.5.57
|
||||||
dbConfigDeploymentData:
|
dbConfigDeploymentData:
|
||||||
repository: harbor.sheldan.dev/sissi
|
repository: harbor.sheldan.dev/sissi
|
||||||
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
@@ -18,8 +18,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.56</abstracto.version>
|
<abstracto.version>1.5.57</abstracto.version>
|
||||||
<abstracto.templates.version>1.4.48</abstracto.templates.version>
|
<abstracto.templates.version>1.4.49</abstracto.templates.version>
|
||||||
<apache-jena.version>4.9.0</apache-jena.version>
|
<apache-jena.version>4.9.0</apache-jena.version>
|
||||||
<rssreader.version>3.5.0</rssreader.version>
|
<rssreader.version>3.5.0</rssreader.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|||||||
Reference in New Issue
Block a user