Skip to content

Instantly share code, notes, and snippets.

@tzumby
Created May 18, 2017 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzumby/eba6a817ade23ae774ced397e75a2ee5 to your computer and use it in GitHub Desktop.
Save tzumby/eba6a817ade23ae774ced397e75a2ee5 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Service
metadata:
name: wordpress-site
spec:
ports:
- port: 80
selector:
app: wordpress
type: NodePort
---
kind: PersistentVolume
apiVersion: v1
metadata:
name: wordpress-pv-volume
labels:
type: local
spec:
capacity:
storage: 3Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/tmp/data"
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: wordpress-pv-claim
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 3Gi
---
apiVersion: v1
kind: ReplicationController
metadata:
name: wordpress-rc
spec:
replicas: 1
selector:
app: wordpress
template:
metadata:
name: wordpress-rc
labels:
app: wordpress
spec:
volumes:
- name: wordpress-pv-storage
persistentVolumeClaim:
claimName: wordpress-pv-claim
containers:
- name: wordpress
image: wordpress:latest
env:
- name: WORDPRESS_DB_HOST
value: wordpress-mariadb
- name: WORDPRESS_DB_USER
value: wp-kube-usr
- name: WORDPRESS_DB_PASSWORD
value: q1w2e3r4t5
- name: WORDPRESS_DB_NAME
value: wp-kube-db
ports:
- containerPort: 80
volumeMounts:
- mountPath: "/var/www/html"
name: wordpress-pv-storage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment