get.porter.sh/porter@v1.3.0/pkg/runtime/testdata/outputs/bundle-outputs-error.yaml (about)

     1  schemaVersion: 1.0.0
     2  name: outputs
     3  version: 0.1.0
     4  registry: "localhost:5000"
     5  
     6  mixins:
     7    - helm3:
     8        repositories:
     9          bitnami:
    10            url: "https://charts.bitnami.com/bitnami"
    11  
    12  credentials:
    13  - name: kubeconfig
    14    path: /home/nonroot/.kube/config
    15  
    16  install:
    17  - helm3:
    18      description: "Install MySQL"
    19      name: test-mysql
    20      chart: bitnami/mysql
    21      set:
    22        db.name: test-mysql-db
    23        db.user: test-mysql-user
    24      outputs:
    25      - name: mysql-root-password
    26        secret: test-mysql
    27        key: mysql-root-password
    28      - name: mysql-password
    29        secret: test-mysql
    30        key: mysql-password
    31  
    32  uninstall:
    33  - helm3:
    34      description: "Uninstall MySQL"
    35      purge: true
    36      releases:
    37        - test-mysql
    38  
    39  outputs:
    40  - name: mysql-root-password
    41    type: string
    42  - name: mysql-password
    43    type: string
    44    # this section needs to be an array of strings; hence will cause an error
    45    applyTo: install