Skip to content

Kubebag is my playground where I am learning about k8s by trying to create a Kubernetes-based setup that could replace my current traditional server.

License

Notifications You must be signed in to change notification settings

genebean/kubebag

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kubebag

Kubebag is my playground where I am learning about k8s by trying to create a Kubernetes-based setup that could replace my current traditional server. The highlights of what I am aiming for:

To support this running in Vagrant before being run for real a few additional tools are being deployed here:

Running Kubebag

Starting it up

The initial setup utilizes sync waves to setup infrastructure in the order its needed:

  1. local-path-provisioner
  2. MetalLB
  3. Nginx Ingress
  4. Argo CD
  5. everything else

The setup process will copy the generated kubeconfig /vagrant, aka the project folder on your computer, and edit it so that it will work as needed. The process installs k3s and Argo CD and then deploys "applications" via a local Helm chart. The process takes a few minutes to run. The kubeconfig at the end of the block below will let you know when you can connect to Argo CD.

cd kubebag
export KUBECONFIG=kubeconfig
vagrant up && kubectl get services -n nginx-ingress -w

Once you see a line like the one below you can hit ^c and connect to argocd.192.168.50.240.nip.io

NAME                            TYPE           CLUSTER-IP      EXTERNAL-IP      PORT(S)                      AGE
nginx-ingress-controller        LoadBalancer   10.43.176.66    192.168.50.240   80:30394/TCP,443:32516/TCP   7h45m

The username is admin and you can get the password by running cat argocd-pw from your terminal. Once you connect you may want to "sync" the application named argocd.

OpenFaaS

You can connect to OpenFaaS via openfaas.192.168.50.240.nip.io. The username is admin and the password is functions-are-fun (these are set here)

Testing external-dns & CoreDNS

If you want to verify that these services are working run the following commands:

$ kubectl apply -f test-files/localdns-tester-ingress.yaml
ingress.extensions/nginx created

$ kubectl get ingress --all-namespaces
NAMESPACE   NAME                    HOSTS                            ADDRESS          PORTS   AGE
argocd      argocd-server-ingress   argocd.192.168.50.240.nip.io     192.168.50.240   80      8h
openfaas    openfaas-ingress        openfaas.192.168.50.240.nip.io   192.168.50.240   80      8h
default     nginx                   nginx.vagrant.example.com        192.168.50.240   80      8m

$ kubectl get -n localdns service/localdns-coredns
NAME               TYPE        CLUSTER-IP     EXTERNAL-IP   PORT(S)         AGE
localdns-coredns   ClusterIP   10.43.61.184   <none>        53/UDP,53/TCP   49m

The above set of commands applies a sample ingress rule, verifies it is registered, and then looks up the ip of the CoreDNS server. Once you have that info you are ready to test querying that server like so:

$ kubectl run -it --rm --restart=Never --image=infoblox/dnstools:latest dnstools
If you don't see a command prompt, try pressing enter.

dnstools# dig @10.43.61.184 +short nginx.vagrant.example.com
192.168.50.240

dnstools# exit
pod "dnstools" deleted

This brings up a temporary container for testing. Be sure to use the IP shown in your commands, not the one from here. After typing exit the pod for the test container is deleted. Now you can clean up the test ingress by running this:

$ kubectl delete -f test-files/localdns-tester-ingress.yaml
ingress.extensions "nginx" deleted

Assuming the above commands all worked, you now have a functional external-dns setup registering ingresses from your k3s instance with a DNS server external to the automated bits of Kubernetes. Note, though, that only ingresses are registered and then only if they are in the vagrant.example.com domain.

About

Kubebag is my playground where I am learning about k8s by trying to create a Kubernetes-based setup that could replace my current traditional server.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages