Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Commit

Permalink
*: enable debug logging for etcd-operator by default (#1425)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasbro17 authored and Sergiusz Urbaniak committed Jul 19, 2017
1 parent 5ff98ea commit e98f485
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ variable "tectonic_container_images" {
flannel = "quay.io/coreos/flannel:v0.7.1-amd64"
flannel_cni = "quay.io/coreos/flannel-cni:0.1.0"
etcd = "quay.io/coreos/etcd:v3.1.8"
etcd_operator = "quay.io/coreos/etcd-operator:v0.4.0"
etcd_operator = "quay.io/coreos/etcd-operator:v0.4.2"
kenc = "quay.io/coreos/kenc:8f6e2e885f790030fbbb0496ea2a2d8830e58b8f"
calico = "quay.io/calico/node:v1.3.0"
calico_cni = "quay.io/calico/cni:v1.9.1-4-g23fcd5f"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ spec:
metadata:
labels:
k8s-app: etcd-operator
spec:
spec:
volumes:
- name: debug-volume
hostPath:
path: /var/tmp
containers:
- env:
- name: MY_POD_NAMESPACE
Expand All @@ -31,6 +35,12 @@ spec:
value: /tmp
image: ${etcd_operator_image}
name: etcd-operator
command:
- /usr/local/bin/etcd-operator
- --debug-logfile-path=/var/tmp/etcd-operator/debug/debug.log
volumeMounts:
- mountPath: /var/tmp/etcd-operator/debug
name: debug-volume
nodeSelector:
node-role.kubernetes.io/master: ""
securityContext:
Expand Down

0 comments on commit e98f485

Please sign in to comment.