Skip to content

Commit

Permalink
deployer: fix cluster.yaml templates referencing undefined var hub_name
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Sep 9, 2024
1 parent d1bee52 commit 685b78b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions config/clusters/templates/aws/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ hubs: []
# Uncomment the lines below once the support infrastructure was deployed and
# you are ready to add the first cluster

# - name: {{ hub_name }}
# - name: <hub_name>
# # Tip: consider changing this to something more human friendly
# display_name: "{{ cluster_name }} - {{ hub_name }}"
# domain: {{ hub_name }}.{{ cluster_name }}.2i2c.cloud
# display_name: "{{ cluster_name }} - <hub_name>"
# domain: <hub_name>.{{ cluster_name }}.2i2c.cloud
# helm_chart: {{ hub_type }}
# helm_chart_values_files:
# - common.values.yaml
# - {{ hub_name }}.values.yaml
# - enc-{{ hub_name }}.secret.values.yaml
# - <hub_name>.values.yaml
# - enc-<hub_name>.secret.values.yaml
10 changes: 5 additions & 5 deletions config/clusters/templates/gcp/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ hubs: []
# Uncomment the lines below once the support infrastructure was deployed and
# you are ready to add the first cluster

# - name: {{ hub_name }}
# - name: <hub_name>
# # Tip: consider changing this to something more human friendly
# display_name: "{{ cluster_name }} - {{ hub_name }}"
# domain: {{ hub_name }}.{{ cluster_name }}.2i2c.cloud
# display_name: "{{ cluster_name }} - <hub_name>"
# domain: <hub_name>.{{ cluster_name }}.2i2c.cloud
# helm_chart: {{ hub_type }}
# helm_chart_values_files:
# - common.values.yaml
# - {{ hub_name }}.values.yaml
# - enc-{{ hub_name }}.secret.values.yaml
# - <hub_name>.values.yaml
# - enc-<hub_name>.secret.values.yaml

0 comments on commit 685b78b

Please sign in to comment.