Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions chart/tests/test_git_sync_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def test_validate_the_git_sync_container_spec(self):
"gitSync": {
"repository": "test-registry/test-repo",
"tag": "test-tag",
"pullPolicy": "Allways",
"pullPolicy": "Always",
}
},
"dags": {
Expand Down Expand Up @@ -87,7 +87,7 @@ def test_validate_the_git_sync_container_spec(self):
"name": "git-sync-test",
"securityContext": {"runAsUser": 65533},
"image": "test-registry/test-repo:test-tag",
"imagePullPolicy": "Allways",
"imagePullPolicy": "Always",
"env": [
{"name": "GIT_SYNC_REV", "value": "HEAD"},
{"name": "GIT_SYNC_BRANCH", "value": "test-branch"},
Expand Down
4 changes: 2 additions & 2 deletions chart/tests/test_pod_template_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_should_add_an_init_container_if_git_sync_is_true(self):
"gitSync": {
"repository": "test-registry/test-repo",
"tag": "test-tag",
"pullPolicy": "Allways",
"pullPolicy": "Always",
}
},
"dags": {
Expand Down Expand Up @@ -85,7 +85,7 @@ def test_should_add_an_init_container_if_git_sync_is_true(self):
"name": "git-sync-test",
"securityContext": {"runAsUser": 65533},
"image": "test-registry/test-repo:test-tag",
"imagePullPolicy": "Allways",
"imagePullPolicy": "Always",
"env": [
{"name": "GIT_SYNC_REV", "value": "HEAD"},
{"name": "GIT_SYNC_BRANCH", "value": "test-branch"},
Expand Down