mirror of
https://gitlab.com/MisterBiggs/anson-k8s.git
synced 2025-06-15 22:56:48 +00:00
26 lines
433 B
YAML
26 lines
433 B
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: blog
|
|
labels:
|
|
app: blog
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: blog
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: blog
|
|
spec:
|
|
containers:
|
|
- name: blog
|
|
image: ghost:latest
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 2368
|
|
env:
|
|
- name: url
|
|
value: http://my-blog.com
|