Skip to content

Instantly share code, notes, and snippets.

View sivanamurugesan's full-sized avatar

Sivanandham Murugesan sivanamurugesan

View GitHub Profile
---
- name: Deploy VM based on Requested Size
hosts: localhost
gather_facts: no
vars_files:
- vars/sizes-vars.yaml
vars_prompt:
- name: strname
prompt: "\nPlease enter the VM name"
@sivanamurugesan
sivanamurugesan / README.md
Created February 5, 2021 13:45 — forked from p4tin/README.md
Wordpress Kubernetes Cluster

Kubernetes Wordpress installation

Use minikube to test with

  • on macos: ** brew cask install minikube ** minikube start

Start the cluster and scale:

  • kubectl create secret generic mysql-pass --from-literal=password=YOUR_PASSWORD
@sivanamurugesan
sivanamurugesan / dnsmasq.md
Created June 27, 2020 03:41 — forked from jlebon/dnsmasq.md
How to set up dnsmasq on an OpenShift cluster

This gist is mostly based on the dnsmasq appendix from the openshift-training repo. However, I updated it and included fixes for the many gotchas I found along the way.

This is useful for folks who want to set up a DNS service as part of the cluster itself, either because they cannot easily change their DNS setup outside of the cluster, or just because they want to keep the cluster setup self-contained.