Compare commits
No commits in common. "0052496f318caafa6c41b1a33fc42f6a77944945" and "952c3e1fe12abaec68119fd265081014be9dce19" have entirely different histories.
0052496f31
...
952c3e1fe1
4 changed files with 82 additions and 0 deletions
27
template/stacks/core/argocd/values.kind.yaml
Normal file
27
template/stacks/core/argocd/values.kind.yaml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
global:
|
||||||
|
domain: {{ .Values.edfbuilderTargetDomain }}
|
||||||
|
|
||||||
|
configs:
|
||||||
|
params:
|
||||||
|
server.insecure: true
|
||||||
|
server.basehref: /argocd
|
||||||
|
cm:
|
||||||
|
application.resourceTrackingMethod: annotation
|
||||||
|
timeout.reconciliation: 60s
|
||||||
|
resource.exclusions: |
|
||||||
|
- apiGroups:
|
||||||
|
- "*"
|
||||||
|
kinds:
|
||||||
|
- ProviderConfigUsage
|
||||||
|
accounts.provider-argocd: apiKey
|
||||||
|
rbac:
|
||||||
|
policy.csv: 'g, provider-argocd, role:admin'
|
||||||
|
|
||||||
|
tls:
|
||||||
|
certificates:
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
dex:
|
||||||
|
enabled: false
|
55
template/stacks/core/forgejo/values.osc.yaml
Normal file
55
template/stacks/core/forgejo/values.osc.yaml
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
redis-cluster:
|
||||||
|
enabled: false
|
||||||
|
postgresql:
|
||||||
|
enabled: false
|
||||||
|
postgresql-ha:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
enabled: true
|
||||||
|
size: 5Gi
|
||||||
|
|
||||||
|
test:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
gitea:
|
||||||
|
admin:
|
||||||
|
existingSecret: gitea-credential
|
||||||
|
config:
|
||||||
|
database:
|
||||||
|
DB_TYPE: sqlite3
|
||||||
|
session:
|
||||||
|
PROVIDER: memory
|
||||||
|
cache:
|
||||||
|
ADAPTER: memory
|
||||||
|
queue:
|
||||||
|
TYPE: level
|
||||||
|
server:
|
||||||
|
DOMAIN: 'gitea.{{ .Values.edfbuilderTargetDomain }}'
|
||||||
|
ROOT_URL: 'https://gitea.{{ .Values.edfbuilderTargetDomain }}:443'
|
||||||
|
|
||||||
|
service:
|
||||||
|
ssh:
|
||||||
|
type: NodePort
|
||||||
|
nodePort: 32222
|
||||||
|
externalTrafficPolicy: Local
|
||||||
|
|
||||||
|
image:
|
||||||
|
pullPolicy: "IfNotPresent"
|
||||||
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
|
#tag: "8.0.3"
|
||||||
|
# Adds -rootless suffix to image name
|
||||||
|
rootless: true
|
||||||
|
|
||||||
|
forgejo:
|
||||||
|
runner:
|
||||||
|
enabled: true
|
||||||
|
image:
|
||||||
|
tag: latest
|
||||||
|
# replicas: 3
|
||||||
|
config:
|
||||||
|
runner:
|
||||||
|
labels:
|
||||||
|
- docker:docker://node:16-bullseye
|
||||||
|
- self-hosted:docker://ghcr.io/catthehacker/ubuntu:act-22.04
|
||||||
|
- ubuntu-22.04:docker://ghcr.io/catthehacker/ubuntu:act-22.04
|
Reference in a new issue