Skip to content

Commit e2da2d4

Browse files
committed
task: follow naming standards
1 parent 3bd6707 commit e2da2d4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
File renamed without changes.

.github/workflows/e2e-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
638638
CLUSTER_NAME ?= kind-nvsentinel
639639
REGISTRY_NAME ?= ctlptl-registry
640640
REGISTRY_PORT ?= 5001

scripts/configure-ctlptl-registry.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ generate_first_registry_auth() {
4444

4545
# Function to update existing ctlptl config with first registry auth
4646
update_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
9494
main() {
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

0 commit comments

Comments
 (0)