├── README.md ├── apps ├── git │ └── nginx │ │ ├── app.yaml │ │ └── manifests │ │ └── all.yaml └── helm │ ├── complex-redis │ ├── README.md │ ├── app.yaml │ ├── child-apps │ │ ├── extra-manifests-app.yaml │ │ └── redis.yaml │ └── extra-manifests │ │ └── secret.yaml │ └── simple-redis │ ├── README.md │ └── app.yaml ├── argocd ├── gh-credentials.yaml └── overlays │ ├── README.md │ ├── argocd-cm.yaml │ ├── argocd-repo-server.yaml │ └── kustomization.yaml └── vault ├── README.md └── app.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/README.md -------------------------------------------------------------------------------- /apps/git/nginx/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/git/nginx/app.yaml -------------------------------------------------------------------------------- /apps/git/nginx/manifests/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/git/nginx/manifests/all.yaml -------------------------------------------------------------------------------- /apps/helm/complex-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/helm/complex-redis/README.md -------------------------------------------------------------------------------- /apps/helm/complex-redis/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/helm/complex-redis/app.yaml -------------------------------------------------------------------------------- /apps/helm/complex-redis/child-apps/extra-manifests-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/helm/complex-redis/child-apps/extra-manifests-app.yaml -------------------------------------------------------------------------------- /apps/helm/complex-redis/child-apps/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/helm/complex-redis/child-apps/redis.yaml -------------------------------------------------------------------------------- /apps/helm/complex-redis/extra-manifests/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/helm/complex-redis/extra-manifests/secret.yaml -------------------------------------------------------------------------------- /apps/helm/simple-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/helm/simple-redis/README.md -------------------------------------------------------------------------------- /apps/helm/simple-redis/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/apps/helm/simple-redis/app.yaml -------------------------------------------------------------------------------- /argocd/gh-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/argocd/gh-credentials.yaml -------------------------------------------------------------------------------- /argocd/overlays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/argocd/overlays/README.md -------------------------------------------------------------------------------- /argocd/overlays/argocd-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/argocd/overlays/argocd-cm.yaml -------------------------------------------------------------------------------- /argocd/overlays/argocd-repo-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/argocd/overlays/argocd-repo-server.yaml -------------------------------------------------------------------------------- /argocd/overlays/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/argocd/overlays/kustomization.yaml -------------------------------------------------------------------------------- /vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/vault/README.md -------------------------------------------------------------------------------- /vault/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkayani/avp-demo-kubecon-2021/HEAD/vault/app.yaml --------------------------------------------------------------------------------