-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #915 from poyaz/fix/kind-pod-backup-with-command
Fix/kind pod backup with command
- Loading branch information
Showing
5 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: subject-pod | ||
namespace: k8up-e2e-subject | ||
annotations: | ||
k8up.io/backupcommand: '/tmp/test.sh' | ||
k8up.io/file-extension: '.txt' | ||
k8up.io/backupcommand-container: subject-container | ||
spec: | ||
containers: | ||
- image: busybox | ||
name: dummy-container-blocking-first-position | ||
command: | ||
- "/bin/sh" | ||
- "-c" | ||
- "sleep infinity" | ||
- name: subject-container | ||
image: quay.io/prometheus/busybox:latest | ||
imagePullPolicy: IfNotPresent | ||
args: | ||
- sh | ||
- -c | ||
- | | ||
printf '#!/bin/sh\nsleep 30s\necho %s\n' "$BACKUP_FILE_CONTENT" | tee /tmp/test.sh && chmod a+x /tmp/test.sh && \ | ||
echo && \ | ||
echo "sleeping now" && \ | ||
sleep infinity | ||
securityContext: | ||
runAsUser: $ID | ||
env: | ||
- name: BACKUP_FILE_CONTENT | ||
value: "" | ||
- name: BACKUP_FILE_NAME | ||
value: "" |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#!/usr/bin/env bats | ||
|
||
load "lib/utils" | ||
load "lib/detik" | ||
load "lib/k8up" | ||
|
||
# shellcheck disable=SC2034 | ||
DETIK_CLIENT_NAME="kubectl" | ||
# shellcheck disable=SC2034 | ||
DETIK_CLIENT_NAMESPACE="k8up-e2e-subject" | ||
# shellcheck disable=SC2034 | ||
DEBUG_DETIK="true" | ||
|
||
@test "Creating a Backup of an annotated pod" { | ||
expected_content="expected content: $(timestamp)" | ||
expected_filename="expected_filename.txt" | ||
|
||
given_a_running_operator | ||
given_a_clean_ns | ||
given_s3_storage | ||
given_an_annotated_subject_pod "${expected_filename}" "${expected_content}" | ||
|
||
kubectl apply -f definitions/secrets | ||
yq e '.spec.podSecurityContext.runAsUser='$(id -u)'' definitions/backup/backup.yaml | kubectl apply -f - | ||
|
||
try "at most 10 times every 5s to get backup named 'k8up-backup' and verify that '.status.started' is 'true'" | ||
verify_object_value_by_label job 'k8up.io/owned-by=backup_k8up-backup' '.status.active' 1 true | ||
|
||
wait_until backup/k8up-backup completed | ||
|
||
run restic snapshots | ||
|
||
echo "---BEGIN restic snapshots output---" | ||
echo "${output}" | jq . | ||
echo "---END---" | ||
|
||
echo -n "Number of Snapshots >= 1? " | ||
jq -e 'length >= 1' <<< "${output}" # Ensure that there was actually a backup created | ||
|
||
run get_latest_snap_by_path /k8up-e2e-subject-subject-container.txt | ||
|
||
run restic dump --path /k8up-e2e-subject-subject-container.txt "${output}" k8up-e2e-subject-subject-container.txt | ||
|
||
echo "---BEGIN actual /k8up-e2e-subject-subject-container.txt---" | ||
echo "${output}" | ||
echo "---END---" | ||
|
||
[ "${output}" = "${expected_content}" ] | ||
} |
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