-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from vshn/VT-910_update-readme
Update README how to deploy theme
- Loading branch information
Showing
1 changed file
with
17 additions
and
1 deletion.
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,9 +1,25 @@ | ||
# keycloak-theme | ||
VSHN Keycloak IDP Theme | ||
|
||
## Local development | ||
## Local Development | ||
|
||
Run `docker compose up` to start a local keycloak with the vshn theme. | ||
|
||
The vshn theme is not automatically selected for the account application. | ||
This can be changed in the Admin Console by clicking on Realm Settings and then Theme. | ||
|
||
## Deploy to Your Instance | ||
|
||
1. Merge your Pull Request to master branch | ||
1. Tag it with | ||
```bash | ||
git tag -am v1.x.y | ||
git push --tags | ||
``` | ||
1. This will trigger the GitHub Action and pushes the image to https://quay.io/repository/vshn/keycloak-theme?tab=tags | ||
1. Add the tag of the version to your extraInitContainers ([see codecentric helm chart documentation](https://github.com/codecentric/helm-charts/blob/master/charts/keycloak/README.md#providing-a-custom-theme)) | ||
```yaml | ||
extraInitContainers: | | ||
- name: theme-provider | ||
image: quay.io/vshn/keycloak-theme:v1.x.x | ||
``` |