Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ If you haven't already generated a Fernet key, you will need to do this to enabl
If you used any of the EDB Postgres AI Hybrid Manager `-install-secrets.sh` scripts to set up your environment, you may already have a Fernet key generated. If not, you can generate one using the following command in your terminal. Ensure you have `kubectl` configured to point to your EDB Postgres AI Hybrid Manager cluster:

```bash
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')

kubectl create namespace upm-griptape

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ For EKS installations using the `eks-install-secrets.sh` script, you can skip ke
1. Create a Fernet key and store it in a variable:

```shell
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')
```

!!!note
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ kubectl annotate secret -n upm-replicator edb-cred replicator.v1.mittwald.de/rep

kubectl create namespace upm-griptape

FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')

kubectl apply -f - <<EOF
apiVersion: v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ kubectl annotate secret -n upm-replicator edb-cred replicator.v1.mittwald.de/rep

kubectl create namespace upm-griptape

FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')

kubectl apply -f - <<EOF
apiVersion: v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ Both namespaces and secrets are used in the install process.

```bash
PG_CONFOUNDING_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')
```

1. Create the required namespaces:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you ran one of the `-install-secrets.sh` scripts during Hybrid Manager setup,
If not, generate it manually with the following commands (requires `kubectl` configured for your HM cluster):

```bash
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')

kubectl create namespace upm-griptape

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For EKS installations using the `eks-install-secrets.sh` script, you can skip ke
1. Create a Fernet key and store it in a variable:

```shell
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')
```

!!!note
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you ran one of the `-install-secrets.sh` scripts during Hybrid Manager setup,
If not, generate it manually with the following commands (requires `kubectl` configured for your HM cluster):

```bash
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')

kubectl create namespace upm-griptape

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For EKS installations using the `eks-install-secrets.sh` script, you can skip ke
1. Create a Fernet key and store it in a variable:

```shell
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64)
FERNET_KEY=$(dd if=/dev/urandom bs=32 count=1 2>/dev/null | base64 | tr '+/' '-_')
```

!!!note
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This release introduces new authentication secrets, updates the Data Migration S
**Before** installing the 2025.12 chart, you must manually create the `dex-fernet-key`.

```bash
FERNET_KEY=$(head -c 32 /dev/urandom | base64)
FERNET_KEY=$(head -c 32 /dev/urandom | base64 | tr '+/' '-_')

kubectl create secret generic dex-fernet-key \
--from-literal=fernet-key="$FERNET_KEY" \
Expand Down
Loading