4
.github/workflows/release-publish.yml
vendored
4
.github/workflows/release-publish.yml
vendored
@ -155,8 +155,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Run test suite in final docker images
|
- name: Run test suite in final docker images
|
||||||
run: |
|
run: |
|
||||||
echo "PG_PASS=$(openssl rand 32 | base64)" >> .env
|
echo "PG_PASS=$(openssl rand 32 | base64 -w 0)" >> .env
|
||||||
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 32 | base64)" >> .env
|
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 32 | base64 -w 0)" >> .env
|
||||||
docker compose pull -q
|
docker compose pull -q
|
||||||
docker compose up --no-start
|
docker compose up --no-start
|
||||||
docker compose start postgresql redis
|
docker compose start postgresql redis
|
||||||
|
4
.github/workflows/release-tag.yml
vendored
4
.github/workflows/release-tag.yml
vendored
@ -14,8 +14,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Pre-release test
|
- name: Pre-release test
|
||||||
run: |
|
run: |
|
||||||
echo "PG_PASS=$(openssl rand 32 | base64)" >> .env
|
echo "PG_PASS=$(openssl rand 32 | base64 -w 0)" >> .env
|
||||||
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 32 | base64)" >> .env
|
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 32 | base64 -w 0)" >> .env
|
||||||
docker buildx install
|
docker buildx install
|
||||||
mkdir -p ./gen-ts-api
|
mkdir -p ./gen-ts-api
|
||||||
docker build -t testing:latest .
|
docker build -t testing:latest .
|
||||||
|
4
Makefile
4
Makefile
@ -47,8 +47,8 @@ test-go:
|
|||||||
go test -timeout 0 -v -race -cover ./...
|
go test -timeout 0 -v -race -cover ./...
|
||||||
|
|
||||||
test-docker: ## Run all tests in a docker-compose
|
test-docker: ## Run all tests in a docker-compose
|
||||||
echo "PG_PASS=$(shell openssl rand 32 | base64)" >> .env
|
echo "PG_PASS=$(shell openssl rand 32 | base64 -w 0)" >> .env
|
||||||
echo "AUTHENTIK_SECRET_KEY=$(shell openssl rand 32 | base64)" >> .env
|
echo "AUTHENTIK_SECRET_KEY=$(shell openssl rand 32 | base64 -w 0)" >> .env
|
||||||
docker compose pull -q
|
docker compose pull -q
|
||||||
docker compose up --no-start
|
docker compose up --no-start
|
||||||
docker compose start postgresql redis
|
docker compose start postgresql redis
|
||||||
|
@ -50,8 +50,8 @@ Run the following commands to generate a password and secret key and write them
|
|||||||
|
|
||||||
{/* prettier-ignore */}
|
{/* prettier-ignore */}
|
||||||
```shell
|
```shell
|
||||||
echo "PG_PASS=$(openssl rand 36 | base64)" >> .env
|
echo "PG_PASS=$(openssl rand 36 | base64 -w 0)" >> .env
|
||||||
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 60 | base64)" >> .env
|
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 60 | base64 -w 0)" >> .env
|
||||||
```
|
```
|
||||||
|
|
||||||
:::info
|
:::info
|
||||||
|
@ -23,7 +23,7 @@ Start by generating passwords for the database and cache. You can use either of
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
pwgen -s 50 1
|
pwgen -s 50 1
|
||||||
openssl rand 60 | base64
|
openssl rand 60 | base64 -w 0
|
||||||
```
|
```
|
||||||
|
|
||||||
### Set Values
|
### Set Values
|
||||||
|
@ -19,7 +19,7 @@ The following placeholders will be used:
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
3. Give the User a password, generated using for example `pwgen 64 1` or `openssl rand 36 | base64`.
|
3. Give the User a password, generated using for example `pwgen 64 1` or `openssl rand 36 | base64 -w 0`.
|
||||||
|
|
||||||
4. Open the Delegation of Control Wizard by right-clicking the domain and selecting "All Tasks".
|
4. Open the Delegation of Control Wizard by right-clicking the domain and selecting "All Tasks".
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ The following placeholders will be used:
|
|||||||
|
|
||||||
1. Log into FreeIPA.
|
1. Log into FreeIPA.
|
||||||
|
|
||||||
2. Create a user in FreeIPA, matching your naming scheme. Provide a strong password, example generation methods: `pwgen 64 1` or `openssl rand 36 | base64`. After you are done click **Add and Edit**.
|
2. Create a user in FreeIPA, matching your naming scheme. Provide a strong password, example generation methods: `pwgen 64 1` or `openssl rand 36 | base64 -w 0`. After you are done click **Add and Edit**.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
Reference in New Issue
Block a user