added terralist
This commit is contained in:
parent
eb1844711e
commit
dc69d16fcd
4 changed files with 145 additions and 0 deletions
24
otc/garm-provider-test.t09.de/registry/coder.yaml
Normal file
24
otc/garm-provider-test.t09.de/registry/coder.yaml
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: coder-reg
|
||||||
|
namespace: argocd
|
||||||
|
labels:
|
||||||
|
env: dev
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
destination:
|
||||||
|
name: in-cluster
|
||||||
|
namespace: argocd
|
||||||
|
source:
|
||||||
|
path: "otc/garm-provider-test.t09.de/stacks/coder"
|
||||||
|
repoURL: "https://edp.buildth.ing/DevFW-CICD/stacks-instances"
|
||||||
|
targetRevision: HEAD
|
||||||
|
project: default
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
24
otc/garm-provider-test.t09.de/registry/terralist.yaml
Normal file
24
otc/garm-provider-test.t09.de/registry/terralist.yaml
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: terralist-reg
|
||||||
|
namespace: argocd
|
||||||
|
labels:
|
||||||
|
env: dev
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
destination:
|
||||||
|
name: in-cluster
|
||||||
|
namespace: argocd
|
||||||
|
source:
|
||||||
|
path: "otc/garm-provider-test.t09.de/stacks/terralist"
|
||||||
|
repoURL: "https://edp.buildth.ing/DevFW-CICD/stacks-instances"
|
||||||
|
targetRevision: HEAD
|
||||||
|
project: default
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
# helm upgrade --install --create-namespace --namespace terralist terralist oci://ghcr.io/terralist/helm-charts/terralist -f terralist-values.yaml
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: terralist
|
||||||
|
namespace: argocd
|
||||||
|
labels:
|
||||||
|
env: dev
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
retry:
|
||||||
|
limit: -1
|
||||||
|
destination:
|
||||||
|
name: in-cluster
|
||||||
|
namespace: terralist
|
||||||
|
sources:
|
||||||
|
- repoURL: https://github.com/terralist/helm-charts
|
||||||
|
path: charts/terralist
|
||||||
|
targetRevision: terralist-0.8.1
|
||||||
|
helm:
|
||||||
|
valueFiles:
|
||||||
|
- $values/otc/garm-provider-test.t09.de/stacks/terralist/terralist/values.yaml
|
||||||
|
- repoURL: https://edp.buildth.ing/DevFW-CICD/stacks-instances
|
||||||
|
targetRevision: HEAD
|
||||||
|
ref: values
|
||||||
|
|
@ -0,0 +1,67 @@
|
||||||
|
controllers:
|
||||||
|
main:
|
||||||
|
strategy: Recreate
|
||||||
|
containers:
|
||||||
|
app:
|
||||||
|
env:
|
||||||
|
- name: TERRALIST_OAUTH_PROVIDER
|
||||||
|
value: github
|
||||||
|
- name: TERRALIST_GH_CLIENT_ID
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: github-app-credentials
|
||||||
|
key: client-id
|
||||||
|
- name: TERRALIST_GH_CLIENT_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: github-app-credentials
|
||||||
|
key: client-secret
|
||||||
|
- name: TERRALIST_TOKEN_SIGNING_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: terralist-secret
|
||||||
|
key: token-signing-secret
|
||||||
|
- name: TERRALIST_COOKIE_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: terralist-secret
|
||||||
|
key: cookie-secret
|
||||||
|
- name: TERRALIST_URL
|
||||||
|
value: https://terralist.garm-provider-test.t09.de
|
||||||
|
- name: TERRALIST_SQLITE_PATH
|
||||||
|
value: /data/db.sqlite
|
||||||
|
- name: TERRALIST_LOCAL_STORE
|
||||||
|
value: /data/modules
|
||||||
|
- name: TERRALIST_PROVIDERS_ANONYMOUS_READ
|
||||||
|
value: "true"
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
main:
|
||||||
|
enabled: true
|
||||||
|
className: nginx
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: main
|
||||||
|
hosts:
|
||||||
|
- host: terralist.garm-provider-test.t09.de
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
service:
|
||||||
|
identifier: main
|
||||||
|
port: http
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- terralist.garm-provider-test.t09.de
|
||||||
|
secretName: terralist-tls-secret
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
data:
|
||||||
|
enabled: true
|
||||||
|
accessMode: ReadWriteOnce
|
||||||
|
size: 10Gi
|
||||||
|
retain: false
|
||||||
|
storageClass: "csi-disk"
|
||||||
|
annotations:
|
||||||
|
everest.io/disk-volume-type: GPSSD
|
||||||
|
globalMounts:
|
||||||
|
- path: /data
|
||||||
Loading…
Add table
Add a link
Reference in a new issue