website/docs: improve wording on release notes, point to tag for docker-compose download
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
8ce918d527
commit
23123c43ee
|
@ -1,16 +0,0 @@
|
||||||
#!/bin/bash -xe
|
|
||||||
wget -q -O - https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash
|
|
||||||
|
|
||||||
VERSION=3.9.0
|
|
||||||
|
|
||||||
wget https://www.python.org/ftp/python/$VERSION/Python-$VERSION.tgz
|
|
||||||
tar xvzf Python-$VERSION.tgz
|
|
||||||
cd Python-$VERSION/
|
|
||||||
|
|
||||||
./configure --prefix=$HOME/_work/_tool/Python/$VERSION/x64/ --enable-optimizations --with-ensurepip=install
|
|
||||||
make -j 8
|
|
||||||
sudo make altinstall
|
|
||||||
touch $HOME/_work/_tool/Python/$VERSION/x64.complete
|
|
||||||
|
|
||||||
ln -s $HOME/_work/_tool/Python/3.9.5/x64 $HOME/_work/_tool/Python/3/x64
|
|
||||||
ln -s $HOME/_work/_tool/Python/3.9.5/x64 $HOME/_work/_tool/Python/3.9/x64
|
|
|
@ -12,7 +12,7 @@ This installation method is for test-setups and small-scale productive setups.
|
||||||
|
|
||||||
## Preparation
|
## Preparation
|
||||||
|
|
||||||
Download the latest `docker-compose.yml` from [here](https://raw.githubusercontent.com/goauthentik/authentik/master/docker-compose.yml). Place it in a directory of your choice.
|
Download the latest `docker-compose.yml` from [here](https://raw.githubusercontent.com/goauthentik/authentik/version/2021.5.1/docker-compose.yml). Place it in a directory of your choice.
|
||||||
|
|
||||||
To optionally enable error-reporting, run `echo AUTHENTIK_ERROR_REPORTING__ENABLED=true >> .env`
|
To optionally enable error-reporting, run `echo AUTHENTIK_ERROR_REPORTING__ENABLED=true >> .env`
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ This release does not introduce any new requirements.
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-0.14/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
Download the docker-compose file for 0.14 from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-0.14/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
||||||
|
|
||||||
### Kubernetes
|
### Kubernetes
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,7 @@ This release does not introduce any new requirements.
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.1/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
Download the docker-compose file for 2021.1 from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.1/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
||||||
|
|
||||||
### Kubernetes
|
### Kubernetes
|
||||||
|
|
||||||
|
|
|
@ -124,7 +124,7 @@ The integrations affected are:
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.2/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
Download the docker-compose file for 2021.2 from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.2/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
||||||
|
|
||||||
### Kubernetes
|
### Kubernetes
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ This release does not introduce any new requirements.
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.3/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
Download the docker-compose file for 2021.3 from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.3/docker-compose.yml). Afterwards, simply run `docker-compose up -d` and then the standard upgrade command of `docker-compose run --rm server migrate`.
|
||||||
|
|
||||||
### Kubernetes
|
### Kubernetes
|
||||||
|
|
||||||
|
|
|
@ -133,7 +133,7 @@ This release does not introduce any new requirements.
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.4/docker-compose.yml). Afterwards, simply run `docker-compose up -d`.
|
Download the docker-compose file for 2021.4 from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.4/docker-compose.yml). Afterwards, simply run `docker-compose up -d`.
|
||||||
|
|
||||||
### Kubernetes
|
### Kubernetes
|
||||||
|
|
||||||
|
|
|
@ -62,16 +62,19 @@ This feature is still in technical preview, so please report any Bugs you run in
|
||||||
|
|
||||||
- core: fix application's slug field not being set to unique
|
- core: fix application's slug field not being set to unique
|
||||||
- flows: fix error when using cancel flow
|
- flows: fix error when using cancel flow
|
||||||
|
- lib: Fix config loading of secrets from files (#887)
|
||||||
- lib: fix parsing of remote IP header when behind multiple reverse proxies
|
- lib: fix parsing of remote IP header when behind multiple reverse proxies
|
||||||
- lifecycle: check if group of docker socket exists
|
- lifecycle: check if group of docker socket exists
|
||||||
- lifecycle: fix error when worker is not running as root
|
- lifecycle: fix error when worker is not running as root
|
||||||
- outposts: fix error when controller loads from cache but cache has expired
|
- outposts: fix error when controller loads from cache but cache has expired
|
||||||
- outposts: fix missing default for OutpostState.for_channel
|
- outposts: fix missing default for OutpostState.for_channel
|
||||||
- outposts: fix reload notification not working due to wrong ID being cached
|
- outposts: fix reload notification not working due to wrong ID being cached
|
||||||
|
- outposts/ldap: fix AUTHENTIK_INSECURE not being respected for API client during bind
|
||||||
- outposts/proxy: fix error redeeming code when using non-standard ports
|
- outposts/proxy: fix error redeeming code when using non-standard ports
|
||||||
- outposts/proxy: fix insecure TLS Skip
|
- outposts/proxy: fix insecure TLS Skip
|
||||||
- providers/ldap: use username instead of name for user dn (#883)
|
- providers/ldap: use username instead of name for user dn (#883)
|
||||||
- providers/proxy: connect ingress to https instead of http
|
- providers/proxy: connect ingress to https instead of http
|
||||||
|
- root: only load debug secret key when debug is enabled
|
||||||
- web: fix chunks overwriting each other
|
- web: fix chunks overwriting each other
|
||||||
- web/admin: add notice for LDAP Provider's group selection
|
- web/admin: add notice for LDAP Provider's group selection
|
||||||
- web/admin: fix PropertyMappings not loading correctly
|
- web/admin: fix PropertyMappings not loading correctly
|
||||||
|
@ -83,7 +86,7 @@ This release does not introduce any new requirements.
|
||||||
|
|
||||||
### docker-compose
|
### docker-compose
|
||||||
|
|
||||||
Download the latest docker-compose file from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.5/docker-compose.yml). Afterwards, simply run `docker-compose up -d`.
|
Download the docker-compose file for 2021.5 from [here](https://raw.githubusercontent.com/goauthentik/authentik/version-2021.5/docker-compose.yml). Afterwards, simply run `docker-compose up -d`.
|
||||||
|
|
||||||
:::warning
|
:::warning
|
||||||
The public port of the compose stack has been changed from 443 to 9000 and 9443 to prevent port contention.
|
The public port of the compose stack has been changed from 443 to 9000 and 9443 to prevent port contention.
|
||||||
|
|
Reference in New Issue