-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial docs on the kops side of authentication
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Authentication | ||
|
||
Kops has support for configuring authentication systems. This support is | ||
currently highly experimental, and should not be used with kubernetes versions | ||
before 1.8.5 because of a serious bug with apimachinery (#55022)[https://github.com/kubernetes/kubernetes/issues/55022]. | ||
|
||
## kopeio authentication | ||
|
||
If you want to experiment with kopeio authentication, you can use | ||
`--authentication kopeio`. However please be aware that kopeio authentication | ||
has not yet been formally released, and thus there is not a lot of upstream | ||
documentation. | ||
|
||
Alternatively, you can add this block to your cluster: | ||
|
||
``` | ||
authentication: | ||
kopeio: {} | ||
``` | ||
|
||
For example: | ||
|
||
``` | ||
apiVersion: kops/v1alpha2 | ||
kind: Cluster | ||
metadata: | ||
name: cluster.example.com | ||
spec: | ||
authentication: | ||
kopeio: {} | ||
authorization: | ||
rbac: {} | ||
``` | ||
|