Skip to content

Commit

Permalink
Investigate vmware-tanzu#4268
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Jiang <[email protected]>
  • Loading branch information
reasonerjt committed Nov 15, 2021
1 parent 9834890 commit 7daf092
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 20 deletions.
88 changes: 88 additions & 0 deletions examples/nginx-app/with-pv-sleep120.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Copyright 2017 the Velero contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

---
apiVersion: v1
kind: Namespace
metadata:
name: nginx-example-sleep120
labels:
app: nginx

---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: nginx-logs
namespace: nginx-example-sleep120
labels:
app: nginx
spec:
# Optional:
# storageClassName: <YOUR_STORAGE_CLASS_NAME>
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 50Mi

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
namespace: nginx-example-sleep120
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: '["/bin/bash", "-c", "echo \"pre\" > var/log/nginx/lab-pre-backup;sleep 120"]'
pre.hook.backup.velero.io/timeout: 360s
post.hook.backup.velero.io/container: fsfreeze
post.hook.backup.velero.io/command: '["/bin/bash", "-c", "echo \"post\" > var/log/nginx/lab-post-backup"]'
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"


26 changes: 6 additions & 20 deletions examples/nginx-app/with-pv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
apiVersion: v1
kind: Namespace
metadata:
name: nginx-example
name: nginx-example-nosleep
labels:
app: nginx

Expand All @@ -25,7 +25,7 @@ kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: nginx-logs
namespace: nginx-example
namespace: nginx-example-nosleep
labels:
app: nginx
spec:
Expand All @@ -42,7 +42,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
namespace: nginx-example
namespace: nginx-example-nosleep
spec:
replicas: 1
selector:
Expand All @@ -54,9 +54,10 @@ spec:
app: nginx
annotations:
pre.hook.backup.velero.io/container: fsfreeze
pre.hook.backup.velero.io/command: '["/sbin/fsfreeze", "--freeze", "/var/log/nginx"]'
pre.hook.backup.velero.io/command: '["/bin/bash", "-c", "echo \"pre\" > var/log/nginx/lab-pre-backup"]'
pre.hook.backup.velero.io/timeout: 360s
post.hook.backup.velero.io/container: fsfreeze
post.hook.backup.velero.io/command: '["/sbin/fsfreeze", "--unfreeze", "/var/log/nginx"]'
post.hook.backup.velero.io/command: '["/bin/bash", "-c", "echo \"post\" > var/log/nginx/lab-post-backup"]'
spec:
volumes:
- name: nginx-logs
Expand Down Expand Up @@ -85,18 +86,3 @@ spec:
- "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: LoadBalancer

0 comments on commit 7daf092

Please sign in to comment.