Initial upload
This commit is contained in:
parent
ac3dd9611a
commit
9505384cec
5 changed files with 53 additions and 4 deletions
|
@ -13,6 +13,16 @@ test:
|
|||
enabled: false
|
||||
|
||||
gitea:
|
||||
additionalConfigFromEnvs:
|
||||
- name: FORGEJO__APP_NAME
|
||||
value: EDP Forgejo
|
||||
- name: FORGEJO__APP_SLOGAN
|
||||
value: Welcome to the Forgejo
|
||||
# - name: ENV_TO_INI__DATABASE__PASSWD
|
||||
# valueFrom:
|
||||
# secretKeyRef:
|
||||
# name: postgres-secret
|
||||
# key: password
|
||||
admin:
|
||||
existingSecret: gitea-credential
|
||||
config:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: argocd
|
||||
name: vector
|
||||
namespace: argocd
|
||||
labels:
|
||||
env: dev
|
||||
|
|
|
@ -0,0 +1,39 @@
|
|||
apiVersion: operator.victoriametrics.com/v1beta1
|
||||
kind: VMAuth
|
||||
metadata:
|
||||
name: vmauth
|
||||
namespace: observability
|
||||
spec:
|
||||
selectAllByDefault: true
|
||||
ingress:
|
||||
class_name: nginx
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
|
||||
cert-manager.io/cluster-issuer: main
|
||||
host: o12y.penguin-observability.think-ahead.cloud
|
||||
tlsHosts:
|
||||
- o12y.penguin-observability.think-ahead.cloud
|
||||
tlsSecretName: vmauth-tls-secret
|
||||
|
||||
---
|
||||
|
||||
apiVersion: operator.victoriametrics.com/v1beta1
|
||||
kind: VMUser
|
||||
metadata:
|
||||
name: simple-user
|
||||
namespace: observability
|
||||
spec:
|
||||
username: simple-user
|
||||
password: simple-password
|
||||
targetRefs:
|
||||
- crd:
|
||||
kind: VMSingle
|
||||
name: victoria-k8s-stack-victoria-metrics-k8s-stack
|
||||
namespace: observability
|
||||
paths: ["/.*"]
|
||||
- crd:
|
||||
kind: VLogs
|
||||
name: victorialogs
|
||||
namespace: observability
|
||||
paths: ["/.*"]
|
||||
|
|
@ -749,7 +749,7 @@ vmalert:
|
|||
|
||||
vmauth:
|
||||
# -- Enable VMAuth CR
|
||||
enabled: false
|
||||
enabled: true
|
||||
# -- VMAuth annotations
|
||||
annotations: {}
|
||||
# -- (object) Full spec for VMAuth CRD. Allowed values described [here](https://docs.victoriametrics.com/operator/api#vmauthspec)
|
||||
|
|
|
@ -8,8 +8,8 @@ controller:
|
|||
annotations:
|
||||
kubernetes.io/elb.class: union
|
||||
kubernetes.io/elb.port: '80'
|
||||
kubernetes.io/elb.id: 71374e9e-fd17-477b-9503-7de061792073
|
||||
kubernetes.io/elb.ip: 80.158.108.28
|
||||
kubernetes.io/elb.id: a9217774-3c21-4344-87a8-087843881e9b
|
||||
kubernetes.io/elb.ip: 164.30.25.121
|
||||
|
||||
ingressClassResource:
|
||||
name: nginx
|
||||
|
|
Loading…
Reference in a new issue