Example Apps to Demonstrate Argo CD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Peefy 930c853a7c feat: add the guestbook app with kusionstack plugins. 2 years ago
..
README.md feat: add the guestbook app with kusionstack plugins. 2 years ago

README.md

KusionStack

KusionStack is a highly flexible programmable technology stack to enable unified application delivery and operation, which aims to help enterprises build an application-centric configuration management plane and DevOps ecosystem.

Use the following steps to try the application:

  • Follow instructions from the guide to make sure kusion binary is available in argocd-repo-server pod.
  • Register kusion plugin argocd-cm ConfigMap:
apiVersion: v1
data:
  configManagementPlugins: |
    - name: kusion
      generate:
        command: ["sh", "-c"]
        args: ["kusion compile"]
      lockRepo: true    
  • Create a guestbook application using kusion as a config management plugin name.
argocd app create guestbook-test \
    --repo https://github.com/KusionStack/konfig.git \
    --path appops/guestbook-frontend/prod \
    --dest-namespace default \
    --dest-server https://kubernetes.default.svc \
    --config-management-plugin kusion