mirror of
https://github.com/ghndrx/blog-manifest.git
synced 2026-02-10 06:54:59 +00:00
Added configurations for deploying Ghost blog on Kubernetes using MySQL and nginx-proxy. Included resource limits for ghost-blog-deployment and mysql-deployment.yaml, created ingress-service.yaml for nginx-proxy with https and http, and added ghost-blog-service.yaml and mysql-service.yaml for connecting the Ghost blog app to the MySQL server. Also added a namespace 'blog' for better organization of resources.
This commit is contained in:
@@ -3,10 +3,10 @@ kind: Deployment
|
||||
metadata:
|
||||
name: ghost-blog
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: ghost-blog
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
@@ -14,19 +14,48 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: ghost-blog
|
||||
image: ghost:3
|
||||
image: ghost:latest
|
||||
ports:
|
||||
- containerPort: 2368
|
||||
resources:
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
cpu: "500m"
|
||||
requests:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
env:
|
||||
- name: database__client
|
||||
value: mysql
|
||||
- name: database__connection__host
|
||||
value: mysql-service
|
||||
value: mysql
|
||||
- name: database__connection__user
|
||||
value: ghost
|
||||
- name: database__connection__password
|
||||
value: ghost
|
||||
value: ghostpassword
|
||||
- name: database__connection__database
|
||||
value: ghost
|
||||
|
||||
|
||||
- name: nginx-proxy
|
||||
image: nginx:latest
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- containerPort: 443
|
||||
resources:
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
cpu: "500m"
|
||||
requests:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
env:
|
||||
- name: ghost-blog-nginx-proxy
|
||||
value: ghost-blog
|
||||
- name: ghost-blog-nginx-config
|
||||
value: /etc/nginx/conf.d/default.conf
|
||||
volumeMounts:
|
||||
- name: ghost-blog-nginx-config-volume
|
||||
mountPath: /etc/nginx/conf.d/
|
||||
volumes:
|
||||
- name: ghost-blog-nginx-config-volume
|
||||
configMap:
|
||||
name: ghost-blog-nginx-config
|
||||
|
||||
@@ -14,7 +14,16 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: mysql
|
||||
image: mysql:5.7
|
||||
image: mysql:latest
|
||||
ports:
|
||||
- containerPort: 3306
|
||||
resources:
|
||||
limits:
|
||||
memory: "512Mi"
|
||||
cpu: "500m"
|
||||
requests:
|
||||
memory: "256Mi"
|
||||
cpu: "250m"
|
||||
env:
|
||||
- name: MYSQL_ROOT_PASSWORD
|
||||
value: password
|
||||
@@ -23,13 +32,4 @@ spec:
|
||||
- name: MYSQL_USER
|
||||
value: ghost
|
||||
- name: MYSQL_PASSWORD
|
||||
value: password
|
||||
ports:
|
||||
- containerPort: 3306
|
||||
volumeMounts:
|
||||
- name: mysql-data
|
||||
mountPath: /var/lib/mysql
|
||||
volumes:
|
||||
- name: mysql-data
|
||||
configMap:
|
||||
name: mysql-data
|
||||
value: ghostpassword
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: traefik
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: traefik
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: traefik
|
||||
spec:
|
||||
containers:
|
||||
- name: traefik
|
||||
image: traefik:v2.3
|
||||
ports:
|
||||
- name: web
|
||||
containerPort: 80
|
||||
- name: websecure
|
||||
containerPort: 443
|
||||
- name: admin
|
||||
containerPort: 8080
|
||||
args:
|
||||
-
|
||||
37
networking/ingress-service.yaml
Normal file
37
networking/ingress-service.yaml
Normal file
@@ -0,0 +1,37 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: ghost-blog-ingress
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/rewrite-target: /
|
||||
kubernetes.io/ingress.class: nginx
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- example.com
|
||||
secretName: example-com-tls
|
||||
rules:
|
||||
- host: example.com
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
pathRewrite: /
|
||||
backend:
|
||||
service:
|
||||
name: ghost-blog-service
|
||||
port:
|
||||
name: http
|
||||
- host: example.com
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
pathRewrite: /
|
||||
backend:
|
||||
service:
|
||||
name: ghost-blog-service
|
||||
port:
|
||||
name: https
|
||||
|
||||
@@ -7,8 +7,9 @@ spec:
|
||||
app: ghost-blog
|
||||
ports:
|
||||
- name: http
|
||||
port: 2368
|
||||
port: 80
|
||||
targetPort: 2368
|
||||
- name: https
|
||||
port: 443
|
||||
targetPort: 2368
|
||||
type: ClusterIP
|
||||
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: mysql
|
||||
name: mysql-service
|
||||
spec:
|
||||
selector:
|
||||
app: mysql
|
||||
ports:
|
||||
- name: mysql
|
||||
port: 3306
|
||||
targetPort: 3306
|
||||
type: ClusterIP
|
||||
Reference in New Issue
Block a user