Merge pull request #1382 from jwfang/rbac

basic rbac support
This commit is contained in:
Brad Beam
2017-08-07 08:01:51 -05:00
committed by GitHub
35 changed files with 450 additions and 105 deletions

View File

@@ -114,3 +114,9 @@ vault_deployment_type: docker
k8s_image_pull_policy: IfNotPresent
efk_enabled: false
enable_network_policy: false
## List of authorization modes that must be configured for
## the k8s cluster. Only 'AlwaysAllow','AlwaysDeny', and
## 'RBAC' modes are tested.
authorization_modes: []
rbac_enabled: "{{ 'RBAC' in authorization_modes }}"