this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(platform): combine app-engine with the new cloudlab controller

Change-Id: I8ff131691309c71a56da15e4edda060119267c55

+78 -60
-60
platform/production/app-engine.yaml
··· 1 - apiVersion: argoproj.io/v1alpha1 2 - kind: Application 3 - metadata: 4 - finalizers: 5 - - resources-finalizer.argocd.argoproj.io 6 - name: app-engine 7 - spec: 8 - destination: 9 - name: in-cluster 10 - namespace: app-engine 11 - project: default 12 - syncPolicy: 13 - automated: 14 - prune: true 15 - selfHeal: true 16 - syncOptions: 17 - - CreateNamespace=true 18 - - ApplyOutOfSyncOnly=true 19 - - ServerSideApply=true 20 - source: 21 - repoURL: https://bjw-s-labs.github.io/helm-charts 22 - chart: app-template 23 - targetRevision: 3.7.3 24 - helm: 25 - valuesObject: 26 - defaultPodOptions: 27 - restartPolicy: Always 28 - labels: 29 - istio.io/dataplane-mode: ambient 30 - hostNetwork: true 31 - controllers: 32 - worker: 33 - strategy: RollingUpdate 34 - containers: 35 - app: 36 - image: 37 - # TODO bootstrap and build itself 38 - # repository: zot.zot.svc.cluster.local/khuedoan/app-engine 39 - repository: docker.io/khuedoan/app-engine 40 - tag: 4118f906ab07a17f3dac608f1a690b2215e4d2a5 41 - pullPolicy: Always 42 - env: 43 - TEMPORAL_URL: http://temporal-frontend.temporal:7233 44 - REGISTRY: zot.zot.svc.cluster.local 45 - docker: 46 - image: 47 - repository: docker.io/library/docker 48 - tag: 27-dind 49 - command: 50 - - dockerd 51 - - --host=unix:///var/run/docker.sock 52 - - --insecure-registry=zot.zot.svc.cluster.local 53 - securityContext: 54 - privileged: true 55 - persistence: 56 - socket: 57 - type: emptyDir 58 - globalMounts: 59 - - path: /var/run 60 - subPath: docker.sock
+78
platform/production/netamos.yaml
··· 1 + apiVersion: argoproj.io/v1alpha1 2 + kind: Application 3 + metadata: 4 + finalizers: 5 + - resources-finalizer.argocd.argoproj.io 6 + name: netamos 7 + spec: 8 + destination: 9 + name: in-cluster 10 + namespace: netamos 11 + project: default 12 + syncPolicy: 13 + automated: 14 + prune: true 15 + selfHeal: true 16 + syncOptions: 17 + - CreateNamespace=true 18 + - ApplyOutOfSyncOnly=true 19 + - ServerSideApply=true 20 + source: 21 + repoURL: https://bjw-s-labs.github.io/helm-charts 22 + chart: app-template 23 + targetRevision: 3.7.3 24 + helm: 25 + valuesObject: 26 + defaultPodOptions: 27 + restartPolicy: Always 28 + hostNetwork: true 29 + controllers: 30 + # TODO merge cloudlab controller and app-engine worker 31 + cloudlab: 32 + labels: 33 + istio.io/dataplane-mode: ambient 34 + strategy: RollingUpdate 35 + containers: 36 + worker: 37 + image: 38 + repository: docker.io/khuedoan/cloudlab 39 + tag: 03a609 40 + env: 41 + TEMPORAL_HOST: temporal-frontend.temporal:7233 42 + TG_NON_INTERACTIVE: true 43 + app-engine: 44 + labels: 45 + istio.io/dataplane-mode: ambient 46 + strategy: RollingUpdate 47 + containers: 48 + worker: 49 + image: 50 + # TODO bootstrap and build itself 51 + # repository: zot.zot.svc.cluster.local/khuedoan/app-engine 52 + repository: docker.io/khuedoan/app-engine 53 + tag: 4118f906ab07a17f3dac608f1a690b2215e4d2a5 54 + pullPolicy: Always 55 + env: 56 + TEMPORAL_URL: http://temporal-frontend.temporal:7233 57 + REGISTRY: registry.registry.svc.cluster.local 58 + docker: 59 + image: 60 + repository: docker.io/library/docker 61 + tag: 27-dind 62 + command: 63 + - dockerd 64 + - --host=unix:///var/run/docker.sock 65 + - --insecure-registry=registry.registry.svc.cluster.local 66 + securityContext: 67 + privileged: true 68 + persistence: 69 + socket: 70 + type: emptyDir 71 + advancedMounts: 72 + app-engine: 73 + worker: 74 + - path: /var/run 75 + subPath: docker.sock 76 + docker: 77 + - path: /var/run 78 + subPath: docker.sock