Helm

    KubeVela’s Helm component meets the needs of users to connect to Helm Chart. You can deploy any ready-made Helm chart software package from Helm Repo, Git Repo or OSS bucket through the Helm component, and overwrite its parameters.

    Please copy the above code block and deploy it directly to the runtime cluster:

    1. application.core.oam.dev/app-delivering-chart created

    We also see that the PHASE of the app-delivering-chart APP is running and the STATUS is healthy.

    1. (Opentional) If your OSS bucket needs identity verification, create a Secret:
    1. $ kubectl create secret generic bucket-secret --from-literal=accesskey=<your-ak> --from-literal=secretkey=<your-sk>
    1. Example

    How-to

    1. apiVersion: core.oam.dev/v1beta1
    2. metadata:
    3. name: app-delivering-chart
    4. spec:
    5. components:
    6. properties:
    7. repoType: git
    8. url: https://github.com/oam-dev/terraform-controller
    9. chart: ./chart
    10. git: