-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding CoreDNS as an addon #1995
Conversation
Can one of the admins verify this patch? |
serviceAccountName: coredns | ||
containers: | ||
- name: coredns | ||
image: coredns/coredns:latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use coredns/coredns:011
; we will updated it when we release 1.0.0
.
errors | ||
log stdout | ||
health | ||
kubernetes cluster.local |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should have the service CIDR here too for reverse lookups.
Corefile: | | ||
.:53 { | ||
errors | ||
log stdout |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should just put log
not log stdout
.
name: coredns | ||
items: | ||
- key: Corefile | ||
path: Corefile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix missing newline.
- namespaces | ||
verbs: | ||
- list | ||
- watch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix missing newline.
subjects: | ||
- kind: ServiceAccount | ||
name: coredns | ||
namespace: kube-system |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix missing newline.
name: coredns | ||
namespace: kube-system | ||
labels: | ||
addonmanager.kubernetes.io/mode: Reconcile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix missing newline.
protocol: TCP | ||
- name: metrics | ||
port: 9153 | ||
protocol: TCP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newline
Codecov Report
@@ Coverage Diff @@
## master #1995 +/- ##
=======================================
Coverage 29.87% 29.87%
=======================================
Files 77 77
Lines 4760 4760
=======================================
Hits 1422 1422
Misses 3158 3158
Partials 180 180
Continue to review full report at Codecov.
|
@minikube-bot ok to test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Sorry for the delay in reviewing.
@rajansandeep Can you now send a new PR to align these manifests with what got merged in kubeadm? |
Adding CoreDNS as one of the default add-on in minikube. CoreDNS will be disabled by default.