Skip to content
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

Add new members and move to kubefarm organization #16

Merged
merged 1 commit into from
Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ If you're looking for a real use case, check out the following projects that imp

* **[Kubefarm]** - Automated Kubernetes deployment and the PXE-bootable servers farm

[kubefarm]: https://github.com/kvaps/kubefarm
[kubefarm]: https://github.com/kubefarm/kubefarm
8 changes: 6 additions & 2 deletions deploy/helm/kubernetes/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ keywords:
- go
- cncf
- containers
home: https://github.com/kvaps/kubernetes-in-kubernetes
home: https://github.com/kubefarm/kubernetes-in-kubernetes
sources:
- https://github.com/kvaps/kubernetes-in-kubernetes
- https://github.com/kubefarm/kubernetes-in-kubernetes
- https://github.com/kubernetes/kubernetes
maintainers:
- name: kvaps
email: [email protected]
- name: krakazyabra
email: [email protected]
- name: mrakopes
email: [email protected]
8 changes: 4 additions & 4 deletions deploy/helm/kubernetes/scripts/configure-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ done
export KUBECONFIG=/etc/kubernetes/admin.conf

# upload configuration
# TODO: https://github.com/kvaps/kubernetes-in-kubernetes/issues/6
# TODO: https://github.com/kubefarm/kubernetes-in-kubernetes/issues/6
kubeadm init phase upload-config kubeadm --config /config/kubeadmcfg.yaml

# upload configuration
# TODO: https://github.com/kvaps/kubernetes-in-kubernetes/issues/5
# TODO: https://github.com/kubefarm/kubernetes-in-kubernetes/issues/5
kubeadm init phase upload-config kubelet --config /config/kubeadmcfg.yaml -v1 2>&1 |
while read line; do echo "$line" | grep 'Preserving the CRISocket information for the control-plane node' && killall kubeadm || echo "$line"; done

# setup bootstrap-tokens
# TODO: https://github.com/kvaps/kubernetes-in-kubernetes/issues/7
# TODO: https://github.com/kubefarm/kubernetes-in-kubernetes/issues/7
# TODO: https://github.com/kubernetes/kubernetes/issues/98881
flatconfig=$(mktemp)
kubectl config view --flatten > "$flatconfig"
Expand Down Expand Up @@ -81,7 +81,7 @@ kubectl delete -f /manifests/coredns.yaml 2>/dev/null || true

{{- if .Values.kubeProxy.enabled }}{{"\n"}}
# install kube-proxy addon
# TODO: https://github.com/kvaps/kubernetes-in-kubernetes/issues/4
# TODO: https://github.com/kubefarm/kubernetes-in-kubernetes/issues/4
kubeadm init phase addon kube-proxy --config /config/kubeadmcfg.yaml
{{- else }}{{"\n"}}
# uninstall kube-proxy addon
Expand Down