ubuntu_server
ubuntu_server copied to clipboard
Setup an ubuntu server with ease.
Has to be fixed upstream https://github.com/truecharts/charts/issues/16339
Something like the below might be okay? https://github.com/geerlingguy/ansible-role-docker ``` - name: Install Docker when: install.docker include_role: name: geerlingguy.docker apply: become: True vars: docker_edition: "ce" docker_users: - "{{ ansible_user }}" ```
Currently the kube api server on minikube is exposed via kubectl proxy, this creates a tunnel between the host and the api server directly. It does not go through the...
Not very readable having all the playbooks/tasks just there, need to organise it a bit better. Perhaps using roles of some sort?
Some nice ones are: - https://github.com/itaysk/kubectl-neat - https://github.com/ahmetb/kubectl-cond
Closes #29
Running kubernetes itself takes around 450-500m CPU cycles (half a core) just for the supporting pods, not counting for system components like kubelet. For a home setup, this is a...
https://truecharts.org/guides/addons/vpn-setup/
Incase custom ports are used for exposing service, this is required. Starting point can be In the clusterissuer ```yaml solvers: # - http01: # ingress: # ingressClassName: nginx - dns01:...