Skip to content

Commit

Permalink
Adding license-id and ip-family to prepare cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
jdewinne committed May 21, 2024
1 parent fc1a2b3 commit 94e189e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions prepare-cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ inputs:
kubernetes-version:
description: 'Kubernetes version to provision (format is distribution dependent).'
required: false
license-id:
description: "License ID to use for the installation (required for Embedded Cluster distribution)."
required: false
cluster-name:
description: 'Name of the cluster to provision'
required: false
Expand Down Expand Up @@ -66,6 +69,9 @@ inputs:
- key: "department"
value: "engineering"</pre>
required: false
ip-family:
description: "IP Family to use for the cluster (ipv4|ipv6|dual)"
required: false
kubeconfig-path:
description: 'If specified, the kubeconfig will be written to this path'
required: false
Expand Down Expand Up @@ -146,6 +152,8 @@ runs:
INPUT_TIMEOUT-MINUTES: ${{ inputs.timeout-minutes || 20 }}
INPUT_NODE-GROUPS: ${{ inputs.node-groups || '' }}
INPUT_TAGS: ${{ inputs.tags || '' }}
INPUT_LICENSE-ID: ${{ input.license-id || '' }}
INPUT_IP-FAMILY: ${{ inputs.ip-family || '' }}
INPUT_KUBECONFIG-PATH: ${{ inputs.kubeconfig-path || '' }}
INPUT_EXPORT-KUBECONFIG: ${{ inputs.export-kubeconfig || false }}
- name: Deploy the app with Helm
Expand Down

0 comments on commit 94e189e

Please sign in to comment.