File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ jobs:
127127 - name : Create cluster for E2E tests
128128 env :
129129 CI_COMMIT_REF_NAME : ${{ steps.ref-name.outputs.value }}
130- CTLPTL_YAML : ctlptl-config .yaml
130+ CTLPTL_YAML : . ctlptl.yaml
131131 # Make cluster names unique per architecture to avoid conflicts in parallel runs
132132 CLUSTER_NAME_SUFFIX : " -${{ matrix.arch }}"
133133 run : |
@@ -136,7 +136,7 @@ jobs:
136136 - name : Run E2E tests
137137 env :
138138 CI_COMMIT_REF_NAME : ${{ steps.ref-name.outputs.value }}
139- CTLPTL_YAML : ctlptl-config .yaml
139+ CTLPTL_YAML : . ctlptl.yaml
140140 # Use same cluster name suffix for consistency
141141 CLUSTER_NAME_SUFFIX : " -${{ matrix.arch }}"
142142 run : |
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ jobs:
303303 - name : Create Kind cluster using make
304304 env :
305305 CLUSTER_NAME : ${{ env.CLUSTER_NAME }}
306- CTLPTL_YAML : ctlptl-config .yaml
306+ CTLPTL_YAML : . ctlptl.yaml
307307 run : |
308308 make cluster-create
309309
Original file line number Diff line number Diff line change @@ -634,7 +634,7 @@ docker-main-modules:
634634# Development Environment Targets
635635# ============================================================================
636636# Configuration variables
637- CTLPTL_CONFIG_FILE ?= ctlptl-config .yaml
637+ CTLPTL_CONFIG_FILE ?= . ctlptl.yaml
638638CLUSTER_NAME ?= kind-nvsentinel
639639REGISTRY_NAME ?= ctlptl-registry
640640REGISTRY_PORT ?= 5001
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ generate_first_registry_auth() {
4444
4545# Function to update existing ctlptl config with first registry auth
4646update_ctlptl_config () {
47- local ctlptl_config_path=" ${1:- ctlptl-config .yaml} "
47+ local ctlptl_config_path=" ${1:- . ctlptl.yaml} "
4848 local temp_auth
4949 local temp_file
5050
@@ -92,7 +92,7 @@ update_ctlptl_config() {
9292
9393# Main execution
9494main () {
95- local ctlptl_config_path=" ${1:- ctlptl-config .yaml} "
95+ local ctlptl_config_path=" ${1:- . ctlptl.yaml} "
9696
9797 echo " Configuring ctlptl registry authentication..."
9898
You can’t perform that action at this time.
0 commit comments