AI-Hypercomputer / AI-Hypercomputer/xpk

[Bug] CoreDNS installation uses deprecated kubernetes deployment scripts

Open
#1,008 3 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
193
Forks
94
Avg merge
24m
Merged PRs (30d)
1

Description

XPK's CoreDNS installation uses the deprecated deployment method from [github.com/coredns/deployment](https://github.com/coredns/deployment/tree/master/kubernetes), which has been superseded by the official Helm chart.
>These kube-dns/CoreDNS migration scripts and templates are deprecated. For deploying coredns, use the coredns helm chart, or the yaml templates maintained by kubeadm.

### Current Behavior

Image

```bash
git clone https://github.com/coredns/deployment.git /tmp/deployment
./deploy.sh | kubectl apply -f -
```

### Expected Behavior

Use the official Helm chart as recommended:\
```bash
helm repo add coredns https://coredns.github.io/helm
helm --namespace=kube-system install coredns coredns/coredns \
--set replicaCount=15
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.