Skip to content

Instantly share code, notes, and snippets.

@nithril
Last active September 6, 2022 20:35
Show Gist options
  • Save nithril/ba0e2b8c7d21c323dccf69fa93a078ff to your computer and use it in GitHub Desktop.
Save nithril/ba0e2b8c7d21c323dccf69fa93a078ff to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: httpd
name: httpd
labels:
app.kubernetes.io/part-of: httpd
app: httpd
environment: production
spec:
selector:
matchLabels:
app: httpd
replicas: 1
template:
metadata:
labels:
app.kubernetes.io/part-of: qfwk
app: httpd
spec:
containers:
- name: httpd
image: custom-httpd:1.0.0
imagePullPolicy: Always
ports:
- containerPort: 80
protocol: TCP
resources:
limits:
memory: 1000Mi
cpu: 500m
requests:
memory: 1000Mi
cpu: 250m
FROM httpd:2.4
COPY ./data/ /usr/local/apache2/htdocs/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment