Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Commit d4bd7ef

Browse files
committed
Add proper indentation to extra CoreDNS config
1 parent b2b2335 commit d4bd7ef

File tree

3 files changed

+340
-1
lines changed

3 files changed

+340
-1
lines changed

core/controlplane/config/templates/cloud-config-controller

+1-1
Original file line numberDiff line numberDiff line change
@@ -3430,7 +3430,7 @@ write_files:
34303430
fallthrough in-addr.arpa ip6.arpa
34313431
}
34323432
{{- if and (eq .KubeDns.Provider "coredns") .KubeDns.ExtraCoreDNSConfig }}
3433-
{{ .KubeDns.ExtraCoreDNSConfig }}
3433+
{{ .KubeDns.ExtraCoreDNSConfig | indent 16 }}
34343434
{{- end }}
34353435
prometheus :9153
34363436
proxy . /etc/resolv.conf

go.mod

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
module github.com/kubernetes-incubator/kube-aws
2+
3+
go 1.12
4+
5+
require (
6+
github.com/Masterminds/goutils v1.1.0
7+
github.com/Masterminds/semver v1.4.2
8+
github.com/Masterminds/sprig v2.20.0+incompatible
9+
github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a
10+
github.com/aws/amazon-vpc-cni-k8s v1.5.3
11+
github.com/aws/aws-sdk-go v1.23.2
12+
github.com/beorn7/perks v1.0.1
13+
github.com/cihub/seelog v0.0.0-20151216151435-d2c6e5aa9fbf
14+
github.com/coreos/coreos-cloudinit v1.14.0
15+
github.com/coreos/yaml v0.0.0-20141224210557-6b16a5714269
16+
github.com/davecgh/go-spew v1.1.1
17+
github.com/go-yaml/yaml v2.1.0+incompatible
18+
github.com/gobuffalo/envy v1.7.0
19+
github.com/gobuffalo/packd v0.3.0
20+
github.com/gobuffalo/packr v1.30.1
21+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
22+
github.com/golang/protobuf v1.3.2
23+
github.com/google/go-cmp v0.3.0
24+
github.com/google/uuid v1.1.1
25+
github.com/huandu/xstrings v1.2.0
26+
github.com/imdario/mergo v0.3.7
27+
github.com/inconshreveable/mousetrap v1.0.0
28+
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
29+
github.com/joho/godotenv v1.3.0
30+
github.com/mattn/go-colorable v0.1.4
31+
github.com/mattn/go-isatty v0.0.10
32+
github.com/matttproud/golang_protobuf_extensions v1.0.1
33+
github.com/mfridman/tparse v0.7.4 // indirect
34+
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
35+
github.com/modern-go/reflect2 v1.0.1 // indirect
36+
github.com/olekukonko/tablewriter v0.0.3 // indirect
37+
github.com/pkg/errors v0.8.1
38+
github.com/pmezard/go-difflib v1.0.0
39+
github.com/prometheus/client_golang v1.1.0
40+
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
41+
github.com/prometheus/common v0.6.0
42+
github.com/prometheus/procfs v0.0.3
43+
github.com/rogpeppe/go-internal v1.3.0
44+
github.com/spf13/cobra v0.0.5
45+
github.com/spf13/pflag v1.0.3
46+
github.com/stretchr/testify v1.4.0
47+
github.com/tidwall/gjson v1.3.2
48+
github.com/tidwall/match v1.0.1
49+
github.com/tidwall/pretty v1.0.0
50+
github.com/tidwall/sjson v1.0.4
51+
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
52+
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e
53+
gopkg.in/yaml.v2 v2.2.2
54+
)

0 commit comments

Comments
 (0)