We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c9b8bf commit 87a989fCopy full SHA for 87a989f
tooling/phd/cli/instance_create.py
@@ -393,8 +393,8 @@ def _update_mongodb_password(
393
mongodb_password = k8s_client.read_secret(
394
PHD_MONGODB_USER_PASSWORD_SECRET, instance_name
395
)
396
- print(mongodb_password)
397
- print(config_data["MONGODB_PASSWORD"])
+ print(mongodb_password["data"])
+ print(config_data)
398
config_data["MONGODB_PASSWORD"] = "abcd1234"
399
print(config_data["MONGODB_PASSWORD"])
400
with open(config_file, "w", encoding="utf-8") as f:
0 commit comments