Created
May 31, 2020 06:08
-
-
Save zufardhiyaulhaq/2ce21ca351807991d8a370315695faee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: nginx-example | |
labels: | |
app: nginx | |
--- | |
kind: PersistentVolumeClaim | |
apiVersion: v1 | |
metadata: | |
name: nginx-logs | |
namespace: nginx-example | |
labels: | |
app: nginx | |
spec: | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: | |
storage: 50Mi | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: nginx-deployment | |
namespace: nginx-example | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: nginx | |
template: | |
metadata: | |
labels: | |
app: nginx | |
annotations: | |
pre.hook.backup.velero.io/container: fsfreeze | |
pre.hook.backup.velero.io/command: '["/sbin/fsfreeze", "--freeze", "/var/log/nginx"]' | |
post.hook.backup.velero.io/container: fsfreeze | |
post.hook.backup.velero.io/command: '["/sbin/fsfreeze", "--unfreeze", "/var/log/nginx"]' | |
spec: | |
volumes: | |
- name: nginx-logs | |
persistentVolumeClaim: | |
claimName: nginx-logs | |
containers: | |
- image: nginx:1.17.6 | |
name: nginx | |
ports: | |
- containerPort: 80 | |
volumeMounts: | |
- mountPath: "/var/log/nginx" | |
name: nginx-logs | |
readOnly: false | |
- image: ubuntu:bionic | |
name: fsfreeze | |
securityContext: | |
privileged: true | |
volumeMounts: | |
- mountPath: "/var/log/nginx" | |
name: nginx-logs | |
readOnly: false | |
command: | |
- "/bin/bash" | |
- "-c" | |
- "sleep infinity" | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: nginx | |
name: my-nginx | |
namespace: nginx-example | |
spec: | |
ports: | |
- port: 80 | |
targetPort: 80 | |
selector: | |
app: nginx | |
type: ClusterIP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment