Bläddra i källkod

Running services

Simon Kaiser 3 år sedan
förälder
incheckning
0476f735cf

+ 16
- 0
apps/templates/argo-cd.yaml Visa fil

@@ -0,0 +1,16 @@
1
+apiVersion: argoproj.io/v1alpha1
2
+kind: Application
3
+metadata:
4
+  name: argo-cd
5
+  namespace: argocd
6
+  finalizers:
7
+  - resources-finalizer.argocd.argoproj.io
8
+spec:
9
+  destination:
10
+    namespace: argocd
11
+    server: {{ .Values.spec.destination.server }}
12
+  project: default
13
+  source:
14
+    path: argo-cd
15
+    repoURL: {{ .Values.spec.source.repoURL }}
16
+    targetRevision: {{ .Values.spec.source.targetRevision }}

+ 16
- 0
apps/templates/crossplane.yaml Visa fil

@@ -0,0 +1,16 @@
1
+apiVersion: argoproj.io/v1alpha1
2
+kind: Application
3
+metadata:
4
+  name: crossplane
5
+  namespace: crossplane-system
6
+  finalizers:
7
+  - resources-finalizer.argocd.argoproj.io
8
+spec:
9
+  destination:
10
+    namespace: crossplane-system
11
+    server: {{ .Values.spec.destination.server }}
12
+  project: default
13
+  source:
14
+    path: crossplane
15
+    repoURL: {{ .Values.spec.source.repoURL }}
16
+    targetRevision: {{ .Values.spec.source.targetRevision }}

+ 1
- 1
apps/values.yaml Visa fil

@@ -1,6 +1,6 @@
1 1
 spec:
2 2
   destination:
3
-    server: https://kubernetes.default.svc
3
+    server: https://kubernetes.kaisers.info
4 4
   source:
5 5
     repoURL: https://git.kaisers.info/simonkaiser/k8s-kaisers-info.git
6 6
     targetRevision: HEAD

+ 11
- 0
argo-cd/values.yaml Visa fil

@@ -0,0 +1,11 @@
1
+server:
2
+  ingress: 
3
+    enabled: true
4
+    hosts:
5
+      - argo-cd.kaisers.info
6
+    paths:
7
+      - /
8
+    pathType: Prefix
9
+  
10
+  extraArgs:
11
+  - --insecure

+ 0
- 0
crossplane/values.yaml Visa fil


+ 0
- 0
gitea/gitea-admin-secret.yaml Visa fil


+ 24
- 0
gitea/values.yaml Visa fil

@@ -0,0 +1,24 @@
1
+ingress:
2
+  enabled: true
3
+  annotations: {}
4
+    # kubernetes.io/ingress.class: nginx
5
+    # kubernetes.io/tls-acme: "true"
6
+  hosts:
7
+    - host: newgit.kaisers.info
8
+      paths:
9
+        - path: /
10
+          pathType: Prefix
11
+
12
+service:
13
+  http:
14
+    type: ClusterIP
15
+    port: 3000
16
+    clusterIP:
17
+  ssh:
18
+    type: ClusterIP
19
+    port: 22
20
+    clusterIP:
21
+
22
+gitea:
23
+    admin:
24
+      existingSecret: gitea-admin-secret