devel: rename manifests/ to kustomizations/

This commit is contained in:
Jonas Juselius
2024-06-06 08:52:13 +02:00
parent e0af3046ca
commit accd4d3e4e
149 changed files with 0 additions and 0 deletions
@@ -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
@@ -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
@@ -0,0 +1,18 @@
generatorOptions:
disableNameSuffixHash: true
secretGenerator:
- name: prod-hipster-appsettings
files:
- appsettings.json
- name: prod-hipster-env
envs:
- default.env
patches:
- target:
group: apps
version: v1
kind: Deployment
path: deployment_patch.yaml
resources:
- bindings.yaml
- ../base