Skip to content

Commit

Permalink
gha: fix cluster names in kind workflow
Browse files Browse the repository at this point in the history
Dots are not allowed as part of the cluster name. Let's fix the kind
workflow to only configure valid cluster names.

Signed-off-by: Marco Iorio <marco.iorio@isovalent.com>
  • Loading branch information
giorio94 authored and michi-covalent committed Jun 25, 2024
1 parent c426940 commit 9658f02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ jobs:
kind_config_2: .github/kind-config-2.yaml
# helm/kind-action will override the "name:" provided in the kind config with "chart-testing" unless these are
# specified as inputs. These must also match the suffix here for CLUSTER1 and CLUSTER2.
CLUSTER_NAME_1: c.1
CLUSTER_NAME_2: c.2
CLUSTER1: kind-c.1
CLUSTER2: kind-c.2
CLUSTER_NAME_1: c-1
CLUSTER_NAME_2: c-2
CLUSTER1: kind-c-1
CLUSTER2: kind-c-2

steps:
- name: Checkout
Expand Down

0 comments on commit 9658f02

Please sign in to comment.