added coder to garm-provider-test.t09.de
This commit is contained in:
parent
cc1de3d920
commit
3622f24569
6 changed files with 184 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
|
||||||
|
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
|
||||||
32
otc/garm-provider-test.t09.de/stacks/coder/coder.yaml
Normal file
32
otc/garm-provider-test.t09.de/stacks/coder/coder.yaml
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: coder
|
||||||
|
namespace: argocd
|
||||||
|
labels:
|
||||||
|
env: dev
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
retry:
|
||||||
|
limit: -1
|
||||||
|
destination:
|
||||||
|
name: in-cluster
|
||||||
|
namespace: coder
|
||||||
|
sources:
|
||||||
|
- repoURL: https://helm.coder.com/v2
|
||||||
|
chart: coder
|
||||||
|
targetRevision: 2.28.3
|
||||||
|
helm:
|
||||||
|
valueFiles:
|
||||||
|
- $values/otc/garm-provider-test.t09.de/stacks/coder/coder/values.yaml
|
||||||
|
- repoURL: https://edp.buildth.ing/DevFW-CICD/stacks-instances
|
||||||
|
targetRevision: HEAD
|
||||||
|
ref: values
|
||||||
|
- repoURL: https://edp.buildth.ing/DevFW-CICD/stacks-instances
|
||||||
|
targetRevision: HEAD
|
||||||
|
path: "otc/garm-provider-test.t09.de/stacks/coder/coder/manifests"
|
||||||
|
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Cluster
|
||||||
|
metadata:
|
||||||
|
name: coder-db
|
||||||
|
namespace: coder
|
||||||
|
spec:
|
||||||
|
instances: 1
|
||||||
|
primaryUpdateStrategy: unsupervised
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "1Gi"
|
||||||
|
cpu: 1
|
||||||
|
limits:
|
||||||
|
memory: "1Gi"
|
||||||
|
cpu: 1
|
||||||
|
managed:
|
||||||
|
roles:
|
||||||
|
- name: coder
|
||||||
|
createdb: true
|
||||||
|
login: true
|
||||||
|
passwordSecret:
|
||||||
|
name: coder-db-user
|
||||||
|
storage:
|
||||||
|
size: 10Gi
|
||||||
|
storageClass: csi-disk
|
||||||
|
---
|
||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Database
|
||||||
|
metadata:
|
||||||
|
name: coder
|
||||||
|
namespace: coder
|
||||||
|
spec:
|
||||||
|
cluster:
|
||||||
|
name: coder-db
|
||||||
|
name: coder
|
||||||
|
owner: coder
|
||||||
|
---
|
||||||
61
otc/garm-provider-test.t09.de/stacks/coder/coder/values.yaml
Normal file
61
otc/garm-provider-test.t09.de/stacks/coder/coder/values.yaml
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
coder:
|
||||||
|
# You can specify any environment variables you'd like to pass to Coder
|
||||||
|
# here. Coder consumes environment variables listed in
|
||||||
|
# `coder server --help`, and these environment variables are also passed
|
||||||
|
# to the workspace provisioner (so you can consume them in your Terraform
|
||||||
|
# templates for auth keys etc.).
|
||||||
|
#
|
||||||
|
# Please keep in mind that you should not set `CODER_HTTP_ADDRESS`,
|
||||||
|
# `CODER_TLS_ENABLE`, `CODER_TLS_CERT_FILE` or `CODER_TLS_KEY_FILE` as
|
||||||
|
# they are already set by the Helm chart and will cause conflicts.
|
||||||
|
env:
|
||||||
|
- name: CODER_ACCESS_URL
|
||||||
|
value: https://coder.garm-provider-test.t09.de
|
||||||
|
- name: CODER_PG_CONNECTION_URL
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
# You'll need to create a secret called coder-db-url with your
|
||||||
|
# Postgres connection URL like:
|
||||||
|
# postgres://coder:password@postgres:5432/coder?sslmode=disable
|
||||||
|
name: coder-db-user
|
||||||
|
key: url
|
||||||
|
# For production deployments, we recommend configuring your own GitHub
|
||||||
|
# OAuth2 provider and disabling the default one.
|
||||||
|
- name: CODER_OAUTH2_GITHUB_DEFAULT_PROVIDER_ENABLE
|
||||||
|
value: "false"
|
||||||
|
- name: EDGE_CONNECT_ENDPOINT
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: edge-credential
|
||||||
|
key: endpoint
|
||||||
|
- name: EDGE_CONNECT_USERNAME
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: edge-credential
|
||||||
|
key: username
|
||||||
|
- name: EDGE_CONNECT_PASSWORD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: edge-credential
|
||||||
|
key: password
|
||||||
|
|
||||||
|
# (Optional) For production deployments the access URL should be set.
|
||||||
|
# If you're just trying Coder, access the dashboard via the service IP.
|
||||||
|
# - name: CODER_ACCESS_URL
|
||||||
|
# value: "https://coder.example.com"
|
||||||
|
|
||||||
|
#tls:
|
||||||
|
# secretNames:
|
||||||
|
# - my-tls-secret-name
|
||||||
|
service:
|
||||||
|
type: ClusterIP
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enable: true
|
||||||
|
className: nginx
|
||||||
|
host: coder.garm-provider-test.t09.de
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: main
|
||||||
|
tls:
|
||||||
|
enable: true
|
||||||
|
secretName: coder-tls-secret
|
||||||
|
|
@ -0,0 +1,29 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: cloudnative-pg
|
||||||
|
namespace: argocd
|
||||||
|
labels:
|
||||||
|
env: dev
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
|
retry:
|
||||||
|
limit: -1
|
||||||
|
destination:
|
||||||
|
name: in-cluster
|
||||||
|
namespace: cloudnative-pg
|
||||||
|
sources:
|
||||||
|
- repoURL: https://cloudnative-pg.github.io/charts
|
||||||
|
chart: cloudnative-pg
|
||||||
|
targetRevision: 0.26.1
|
||||||
|
helm:
|
||||||
|
valueFiles:
|
||||||
|
- $values/otc/garm-provider-test.t09.de/stacks/core/cloudnative-pg/values.yaml
|
||||||
|
- repoURL: https://edp.buildth.ing/DevFW-CICD/stacks-instances
|
||||||
|
targetRevision: HEAD
|
||||||
|
ref: values
|
||||||
Loading…
Add table
Add a link
Reference in a new issue