feat: rename kustomizations/ to values/

This commit is contained in:
2024-10-14 07:59:16 +02:00
parent 91b56423f2
commit 372c11c31e
165 changed files with 28 additions and 28 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"slurm": {
"baseUrl": "https://hipster-slurmrestd.ekman.oceanbox.io/",
"slurmApi": "slurm/v0.0.38/",
"dbdApi": "slurmdbd/v0.0.38/",
"user": "serf",
"password": ""
},
"amqp": {
"auth": "",
"host": "10.255.241.201:30673"
},
"archmeister": "https://archmeister.srv.oceanbox.io",
"pubsubName": "pubsub",
"pubsubTopic": "hipster-atlantis",
"fenceRadius": 1000.0,
"cerbosUrl": "http://prod-cerbos.idp.svc:3593"
}
+24
View File
@@ -0,0 +1,24 @@
#
# Create a queue binding for receiving events from RabbitMQ.
# Used by Hipster to get info about changes in job status from slurm.
#
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: slurm-events # name of the subscription path in the app!
spec:
type: bindings.rabbitmq
version: v1
metadata:
- name: host
secretKeyRef:
name: prod-rabbitmq
key: connString
- name: queueName
value: prod-hipster-slurm-job-events
- name: durable
value: true
- name: contentType
value: "application/json"
scopes:
- prod-hipster
+2
View File
@@ -0,0 +1,2 @@
SLURM_PASSWORD=wooqueiLee3ao0ha
SEQ_APIKEY=DRRRBGlTvl00icnSGbeT
+37
View File
@@ -0,0 +1,37 @@
- op: add
path: /spec/template/spec/containers/0/env
value: []
- op: add
path: /spec/template/spec/containers/0/env/-
value:
name: LOG_LEVEL
value: "4"
- op: add
path: /spec/template/spec/containers/0/env/-
value:
name: CI_ENVIRONMENT
value: "production"
- op: replace
path: /spec/template/spec/containers/0/livenessProbe/httpGet/path
value: /healthz
- op: replace
path: /spec/template/spec/containers/0/readinessProbe/httpGet/path
value: /healthz
- op: add
path: /spec/template/spec/containers/0/env/-
value:
name: AMQP_USER
value: user
- op: add
path: /spec/template/spec/containers/0/env/-
value:
name: AMQP_PASSWORD
valueFrom:
secretKeyRef:
name: prod-rabbitmq
key: rabbitmq-password
- op: add
path: /spec/template/spec/containers/0/envFrom/-
value:
secretRef:
name: prod-hipster-env
+19
View File
@@ -0,0 +1,19 @@
generatorOptions:
disableNameSuffixHash: true
configMapGenerator:
- name: prod-hipster-appsettings
files:
- appsettings.json
secretGenerator:
- name: prod-hipster-env
envs:
- default.env
patches:
- target:
group: apps
version: v1
kind: Deployment
path: deployment_patch.yaml
resources:
- bindings.yaml
- ../base