Merge branch 'master' into release-1.8
This commit is contained in:
@@ -316,7 +316,7 @@ Highly Available database statefulset has one master and three replicas, one may
|
|||||||
|:--------------------:|:-------------------:|:------------------:|:------------------:|
|
|:--------------------:|:-------------------:|:------------------:|:------------------:|
|
||||||
| *DB-MASTER* | *DB-REPLICA-1* | *DB-REPLICA-2* | *DB-REPLICA-3* |
|
| *DB-MASTER* | *DB-REPLICA-1* | *DB-REPLICA-2* | *DB-REPLICA-3* |
|
||||||
|
|
||||||
[Here](https://kubernetes.io/docs/tutorials/stateful-application/zookeeper/#tolerating-node-failure) is an example of zookeper statefulset configured with anti-affinity for high availability.
|
[Here](https://kubernetes.io/docs/tutorials/stateful-application/zookeeper/#tolerating-node-failure) is an example of Zookeeper statefulset configured with anti-affinity for high availability.
|
||||||
|
|
||||||
For more information on inter-pod affinity/anti-affinity, see the design doc
|
For more information on inter-pod affinity/anti-affinity, see the design doc
|
||||||
[here](https://git.k8s.io/community/contributors/design-proposals/scheduling/podaffinity.md).
|
[here](https://git.k8s.io/community/contributors/design-proposals/scheduling/podaffinity.md).
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ Some new fields are supported in beta version, like `resourceNames` and `omitSta
|
|||||||
|
|
||||||
In Kubernetes 1.8 `kind` and `apiVersion` along with `rules` __must__ be provided in
|
In Kubernetes 1.8 `kind` and `apiVersion` along with `rules` __must__ be provided in
|
||||||
the audit policy file. A policy file with 0 rules, or a policy file that doesn't provide
|
the audit policy file. A policy file with 0 rules, or a policy file that doesn't provide
|
||||||
a valid `apiVersion` and `kind` value will be treated as illgal.
|
a valid `apiVersion` and `kind` value will be treated as illegal.
|
||||||
|
|
||||||
Some example audit policy files:
|
Some example audit policy files:
|
||||||
|
|
||||||
@@ -359,6 +359,7 @@ Note that this example requries json format output support in Kubernetes 1.8.
|
|||||||
1. install [fluentd, fluent-plugin-forest and fluent-plugin-rewrite-tag-filter][fluentd_install_doc] in the kube-apiserver node
|
1. install [fluentd, fluent-plugin-forest and fluent-plugin-rewrite-tag-filter][fluentd_install_doc] in the kube-apiserver node
|
||||||
1. create a config file for fluentd
|
1. create a config file for fluentd
|
||||||
|
|
||||||
|
```shell
|
||||||
$ cat <<EOF > /etc/fluentd/config
|
$ cat <<EOF > /etc/fluentd/config
|
||||||
# fluentd conf runs in the same host with kube-apiserver
|
# fluentd conf runs in the same host with kube-apiserver
|
||||||
<source>
|
<source>
|
||||||
@@ -404,12 +405,20 @@ Note that this example requries json format output support in Kubernetes 1.8.
|
|||||||
include_time_key true
|
include_time_key true
|
||||||
</template>
|
</template>
|
||||||
</match>
|
</match>
|
||||||
|
```
|
||||||
|
|
||||||
1. start fluentd
|
1. start fluentd
|
||||||
|
|
||||||
|
```shell
|
||||||
$ fluentd -c /etc/fluentd/config -vv
|
$ fluentd -c /etc/fluentd/config -vv
|
||||||
|
```
|
||||||
|
|
||||||
1. start kube-apiserver with the following options:
|
1. start kube-apiserver with the following options:
|
||||||
|
|
||||||
|
```shell
|
||||||
--audit-policy-file=/etc/kubernetes/audit-policy.yaml --audit-log-path=/var/log/kube-audit --audit-log-format=json
|
--audit-policy-file=/etc/kubernetes/audit-policy.yaml --audit-log-path=/var/log/kube-audit --audit-log-format=json
|
||||||
|
```
|
||||||
|
|
||||||
1. check audits for different namespaces in /var/log/audit-*.log
|
1. check audits for different namespaces in /var/log/audit-*.log
|
||||||
|
|
||||||
#### Use logstash to collect and distribute audit events from webhook backend
|
#### Use logstash to collect and distribute audit events from webhook backend
|
||||||
@@ -421,6 +430,7 @@ different users into different files.
|
|||||||
1. install [logstash][logstash_install_doc]
|
1. install [logstash][logstash_install_doc]
|
||||||
1. create config file for logstash
|
1. create config file for logstash
|
||||||
|
|
||||||
|
```shell
|
||||||
$ cat <<EOF > /etc/logstash/config
|
$ cat <<EOF > /etc/logstash/config
|
||||||
input{
|
input{
|
||||||
http{
|
http{
|
||||||
@@ -447,11 +457,17 @@ different users into different files.
|
|||||||
path=>"/var/log/kube-audit-%{[event][user][username]}/audit"
|
path=>"/var/log/kube-audit-%{[event][user][username]}/audit"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
```
|
||||||
|
|
||||||
1. start logstash
|
1. start logstash
|
||||||
|
|
||||||
|
```shell
|
||||||
$ bin/logstash -f /etc/logstash/config --path.settings /etc/logstash/
|
$ bin/logstash -f /etc/logstash/config --path.settings /etc/logstash/
|
||||||
|
```
|
||||||
|
|
||||||
1. create a [kubeconfig file](/docs/tasks/access-application-cluster/authenticate-across-clusters-kubeconfig/) for kube-apiserver webhook audit backend
|
1. create a [kubeconfig file](/docs/tasks/access-application-cluster/authenticate-across-clusters-kubeconfig/) for kube-apiserver webhook audit backend
|
||||||
|
|
||||||
|
```shell
|
||||||
$ cat <<EOF > /etc/kubernetes/audit-webhook-kubeconfig
|
$ cat <<EOF > /etc/kubernetes/audit-webhook-kubeconfig
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
clusters:
|
clusters:
|
||||||
@@ -468,9 +484,14 @@ different users into different files.
|
|||||||
preferences: {}
|
preferences: {}
|
||||||
users: []
|
users: []
|
||||||
EOF
|
EOF
|
||||||
|
```
|
||||||
|
|
||||||
1. start kube-apiserver with the following options:
|
1. start kube-apiserver with the following options:
|
||||||
|
|
||||||
|
```shell
|
||||||
--audit-policy-file=/etc/kubernetes/audit-policy.yaml --audit-webhook-config-file=/etc/kubernetes/audit-webhook-kubeconfig
|
--audit-policy-file=/etc/kubernetes/audit-policy.yaml --audit-webhook-config-file=/etc/kubernetes/audit-webhook-kubeconfig
|
||||||
|
```
|
||||||
|
|
||||||
1. check audits in logstash node's directories /var/log/kube-audit-*/audit
|
1. check audits in logstash node's directories /var/log/kube-audit-*/audit
|
||||||
|
|
||||||
Note that in addition to file output plugin, logstash has a variety of outputs that
|
Note that in addition to file output plugin, logstash has a variety of outputs that
|
||||||
|
|||||||
Reference in New Issue
Block a user