├── demo ├── .helmignore ├── Chart.yaml ├── applicationset │ └── applicationset.yaml ├── configs │ ├── app-hulk │ │ ├── prod │ │ │ └── values.yaml │ │ ├── qa │ │ │ └── values.yaml │ │ ├── staging │ │ │ └── values.yaml │ │ └── values.yaml │ ├── app-iron │ │ ├── prod │ │ │ └── values.yaml │ │ ├── qa │ │ │ └── values.yaml │ │ ├── staging │ │ │ └── values.yaml │ │ └── values.yaml │ └── app-spider │ │ ├── prod │ │ └── values.yaml │ │ ├── qa │ │ └── values.yaml │ │ ├── staging │ │ └── values.yaml │ │ └── values.yaml └── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── service.yaml │ ├── settings-cm.yml │ └── tests │ └── test-connection.yaml ├── git-dir-generator-example ├── application-set.yaml └── argo-projects │ ├── argo-image-updater │ └── install.yaml │ ├── argo-rollouts │ └── install.yaml │ └── argo-workflows │ └── install.yaml ├── list-generator-example ├── applicationset.yaml └── deployment │ └── deployment.yaml ├── media └── architecture.png └── readme.md /demo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/.helmignore -------------------------------------------------------------------------------- /demo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/Chart.yaml -------------------------------------------------------------------------------- /demo/applicationset/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/applicationset/applicationset.yaml -------------------------------------------------------------------------------- /demo/configs/app-hulk/prod/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-hulk/prod/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-hulk/qa/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-hulk/qa/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-hulk/staging/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-hulk/staging/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-hulk/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-hulk/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-iron/prod/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-iron/prod/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-iron/qa/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-iron/qa/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-iron/staging/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-iron/staging/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-iron/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-iron/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-spider/prod/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-spider/prod/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-spider/qa/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-spider/qa/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-spider/staging/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-spider/staging/values.yaml -------------------------------------------------------------------------------- /demo/configs/app-spider/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/configs/app-spider/values.yaml -------------------------------------------------------------------------------- /demo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/templates/_helpers.tpl -------------------------------------------------------------------------------- /demo/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/templates/deployment.yaml -------------------------------------------------------------------------------- /demo/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/templates/service.yaml -------------------------------------------------------------------------------- /demo/templates/settings-cm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/templates/settings-cm.yml -------------------------------------------------------------------------------- /demo/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/demo/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /git-dir-generator-example/application-set.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/git-dir-generator-example/application-set.yaml -------------------------------------------------------------------------------- /git-dir-generator-example/argo-projects/argo-image-updater/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/git-dir-generator-example/argo-projects/argo-image-updater/install.yaml -------------------------------------------------------------------------------- /git-dir-generator-example/argo-projects/argo-rollouts/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/git-dir-generator-example/argo-projects/argo-rollouts/install.yaml -------------------------------------------------------------------------------- /git-dir-generator-example/argo-projects/argo-workflows/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/git-dir-generator-example/argo-projects/argo-workflows/install.yaml -------------------------------------------------------------------------------- /list-generator-example/applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/list-generator-example/applicationset.yaml -------------------------------------------------------------------------------- /list-generator-example/deployment/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/list-generator-example/deployment/deployment.yaml -------------------------------------------------------------------------------- /media/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/media/architecture.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrAlaaYassen/ArgoCD-ApplicationSet-Demo/HEAD/readme.md --------------------------------------------------------------------------------