-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: delete default password for security issue #970
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# zookeeper config | ||
export bcs_zk_client_user='bcsce' | ||
export bcs_zk_client_pwd='bcsce@community2019' | ||
export bcs_zk_client_user='' | ||
export bcs_zk_client_pwd='' | ||
|
||
# encryption config for community edition container release | ||
export bcs_encryption_key='!@#^&*()1qaz@WSX3ed84RFV' | ||
export bcs_encryption_key='' | ||
|
||
# cert password config | ||
export bcs_server_cert_pwd='' | ||
export bcs_client_cert_pwd='' | ||
export bcs_license_server_client_cert_pwd="" | ||
|
||
# docker registry config | ||
export bcs_registry_default_user='bcsce' | ||
export bcs_registry_default_pwd='bcsce' | ||
export bcs_registry_default_user='' | ||
export bcs_registry_default_pwd='' |