Skip to content
Draft
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ tmp*
.env
.idea
.DS_Store
.tool-versions
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,9 @@ testSuites:
name: Talos Certifier Test App
id: talos-certifier-test-app
location:
type: LOCAL # optional, defautls to 'LOCAL'
type: LOCAL # optional, defaults to 'LOCAL'
deploy:
parallel: true # optional, default is false
timeoutSeconds: 120
command: deployment/pit/deploy.sh
params: # Optional command line parameters
Expand All @@ -161,6 +162,7 @@ testSuites:
location:
type: LOCAL
deploy:
parallel: true # optional, default is false
command: deployment/pit/deploy.sh
statusCheck:
command: deployment/pit/is-deployment-ready.sh
Expand All @@ -173,7 +175,10 @@ testSuites:
# Lets assume Talos Certifier and Replicator (made for testing Talos Certifier) are in the same repository
location:
type: LOCAL
dependsOn:
- talos-certifier # optional, deployment of component will not be attempted until these dependencies are up and healthy
deploy:
parallel: true # optional, default is false
command: deployment/pit/deploy.sh
statusCheck:
command: deployment/pit/is-deployment-ready.sh
Expand All @@ -189,6 +194,7 @@ testSuites:
gitRepository: git://127.0.0.1/some-other-component.git
gitRef: # Optional, defaults to "refs/remotes/origin/master"
deploy:
parallel: false # optional
command: deployment/pit/deploy.sh
statusCheck:
command: deployment/pit/is-deployment-ready.sh
Expand Down
2 changes: 1 addition & 1 deletion k8s-deployer/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules/
dist/
tmp/
coverage/
coverage/
33 changes: 33 additions & 0 deletions k8s-deployer/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions k8s-deployer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"ajv": "^8.12.0",
"express": "^4.19.2",
"express-openapi-validator": "^5.1.6",
"mermaid-ascii": "^1.0.0",
"node-fetch": "^3.3.2",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
Expand Down
Loading
Loading