Skip to content

Commit 303daf3

Browse files
committed
Fix script path in Helm secrets encryption and decryption commands
1 parent 3cb5134 commit 303daf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ods-api-service/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ ods-api-service-helm-encrypt-secrets:
101101
@echo " make ods-api-service-helm-encrypt-secrets ODS_CONFIGURATION_DIR=path/to/config to specify a different configuration directory (default: ../ods-configuration)."
102102

103103
@echo "Encrypting secrets in $(ODS_CONFIGURATION_DIR)..."
104-
./scripts/encrypt-helm-secrets.sh $(ODS_CONFIGURATION_DIR)/ods-api-service $(ENV)
104+
../scripts/encrypt-helm-secrets.sh $(ODS_CONFIGURATION_DIR)/ods-api-service $(ENV)
105105
@echo "✓ Secrets encrypted"
106106

107107
## Decrypt secrets files (ENV=<name>|all, omit for root folder only)
@@ -110,7 +110,7 @@ ods-api-service-helm-decrypt-secrets:
110110
@echo " make ods-api-service-helm-decrypt-secrets ODS_CONFIGURATION_DIR=path/to/config to specify a different configuration directory (default: ../ods-configuration)."
111111

112112
@echo "Decrypting secrets in $(ODS_CONFIGURATION_DIR)..."
113-
./scripts/decrypt-helm-secrets.sh $(ODS_CONFIGURATION_DIR) $(ENV)
113+
../scripts/decrypt-helm-secrets.sh $(ODS_CONFIGURATION_DIR) $(ENV)
114114
@echo "✓ Secrets decrypted"
115115

116116
## Diff Helm chart against cluster using helm secrets diff

0 commit comments

Comments
 (0)