diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-07-14 15:12:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-14 15:12:42 -0400 |
commit | 1a6b1bf010b661feb8495d4088f9a0f2640b5658 (patch) | |
tree | 411fd31b0624514a7ea0aed32de3a2a1234b45d2 /inventory | |
parent | faf5618ec483baa7618f02de91128e8f1eaaa471 (diff) | |
parent | 0fc1c77cc0dcbf314b34a957d150d4aced7fe8ed (diff) | |
download | openshift-1a6b1bf010b661feb8495d4088f9a0f2640b5658.tar.gz openshift-1a6b1bf010b661feb8495d4088f9a0f2640b5658.tar.bz2 openshift-1a6b1bf010b661feb8495d4088f9a0f2640b5658.tar.xz openshift-1a6b1bf010b661feb8495d4088f9a0f2640b5658.zip |
Merge pull request #2149 from detiber/audit_config
[master] add support for setting auditConfig
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/byo/hosts.origin.example | 3 | ||||
-rw-r--r-- | inventory/byo/hosts.ose.example | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/inventory/byo/hosts.origin.example b/inventory/byo/hosts.origin.example index 3ac70a035..d22b976e5 100644 --- a/inventory/byo/hosts.origin.example +++ b/inventory/byo/hosts.origin.example @@ -436,6 +436,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', #openshift_master_controllers_env_vars={"ENABLE_HTTP2": "true"} #openshift_node_env_vars={"ENABLE_HTTP2": "true"} +# Enable API service auditing, available as of 1.3 +#openshift_master_audit_config={"basicAuditEnabled": true} + # host group for masters [masters] ose3-master[1:3]-ansible.test.example.com diff --git a/inventory/byo/hosts.ose.example b/inventory/byo/hosts.ose.example index 4c0737cb7..47c7eebfc 100644 --- a/inventory/byo/hosts.ose.example +++ b/inventory/byo/hosts.ose.example @@ -430,6 +430,9 @@ openshift_master_identity_providers=[{'name': 'htpasswd_auth', 'login': 'true', #openshift_master_controllers_env_vars={"ENABLE_HTTP2": "true"} #openshift_node_env_vars={"ENABLE_HTTP2": "true"} +# Enable API service auditing, available as of 3.2 +#openshift_master_audit_config={"basicAuditEnabled": true} + # host group for masters [masters] ose3-master[1:3]-ansible.test.example.com |