Skip to content

Commit

Permalink
Bump releases to version v0.6.2 (#52)
Browse files Browse the repository at this point in the history
* Bump releases to version v0.6.2

* Auto generate

Co-authored-by: metal-stack <[email protected]>
  • Loading branch information
metal-robot[bot] and metal-stack authored Mar 30, 2021
1 parent dbe6a12 commit f7cc26c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DEFAULT_GOAL := build
RELEASE_VERSION := $(or ${RELEASE_VERSION},"v0.6.1")
RELEASE_VERSION := $(or ${RELEASE_VERSION},"v0.6.2")

ifeq ($(CI),true)
DOCKER_TTY_ARG=
Expand Down
22 changes: 22 additions & 0 deletions docs/src/external/metalctl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,28 @@ contexts:
hmac: YOUR_HMAC
```
Optional you can specify `issuer_type: generic` if you use other issuers as Dex, e.g. Keycloak (this will request scopes `openid,profile,email`):
```bash
contexts:
prod:
url: https://api.metal-stack.io/metal
issuer_url: https://keycloak.somedomain.io
issuer_type: generic
client_id: my-client-id
client_secret: my-secret
```

If you must specify special scopes for your issuer, you can use `custom_scopes`:
```bash
contexts:
prod:
url: https://api.metal-stack.io/metal
issuer_url: https://keycloak.somedomain.io
custom_scopes: roles,openid,profile,email
client_id: my-client-id
client_secret: my-secret
```

## Available commands

Full documentation is generated out of the cobra command implementation with:
Expand Down

0 comments on commit f7cc26c

Please sign in to comment.