Skip to content

Commit

Permalink
Staging v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-github-robot authored Jul 31, 2024
2 parents f768a34 + 1705b37 commit 2bacab9
Show file tree
Hide file tree
Showing 11 changed files with 165 additions and 194 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ COMPOSE_SP_ID_TRANSFORM_MODE=${ID_TRANSFORM_MODE:-ON}


## CB_TUMBLEBUG
COMPOSE_TB_VERSION_TAG=${TB_VERSION_TAG:-0.9.1}
# default: COMPOSE_TB_VERSION_TAG=0.9.1
COMPOSE_TB_VERSION_TAG=${TB_VERSION_TAG:-0.9.2}
# default: COMPOSE_TB_VERSION_TAG=0.9.2
COMPOSE_TB_REST_PORT=${TB_REST_PORT:-1323}
# default: COMPOSE_TB_REST_PORT=1323
COMPOSE_TB_VOLUME_HOST_PATH=${TB_VOLUME_HOST_PATH:-./container-volume/cb-tumblebug-container}
Expand Down
345 changes: 158 additions & 187 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:

# CB-Tumblebug
cb-tumblebug:
image: cloudbaristaorg/cb-tumblebug:0.9.1
image: cloudbaristaorg/cb-tumblebug:0.9.2
pull_policy: missing
build:
context: .
Expand Down
6 changes: 3 additions & 3 deletions scripts/init/README.md → init/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Before running `init.py`, you must encrypt your `credentials.yaml` file to ensur

1. Use the `encCredential.sh` script to encrypt your `credentials.yaml` file:
```bash
scripts/init/encCredential.sh
init/encCredential.sh
```

The `init.py` script will decrypt the `credentials.yaml.enc` file as needed to read the credentials. You may need to provide a password if the decryption key is not stored.
Expand Down Expand Up @@ -61,12 +61,12 @@ If you need to update your credentials, decrypt the encrypted file using `decCre

### Encrypting Credentials
```bash
scripts/init/encCredential.sh
init/encCredential.sh
```

### Decrypting Credentials
```bash
scripts/init/decCredential.sh
init/decCredential.sh
```

## Related Files
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/init/init.py → init/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
elif not os.path.isfile(ENC_FILE_PATH):
print(Fore.RED + f"Error: {CRED_FILE_NAME_ENC} does not exist. Please check if it has been generated.")
print(Fore.RED + f"- This script does not accept 'credentials.yaml'. For your security, it only accepts an encrypted file.")
print(Fore.RED + f"- Please generate '{CRED_FILE_NAME_ENC}' using 'scripts/init/encCredential.sh'.")
print(Fore.RED + f"- Please generate '{CRED_FILE_NAME_ENC}' using 'init/encCredential.sh'.")
sys.exit(1)


Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2bacab9

Please sign in to comment.