Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update manifests api version #51

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Pipeline execution
Trigger nightly pipeline manually
---
```shell
kubectl create job --from=cronjob/trigger-nightly-pipeline trigger-nightly-pipeline-$(date +%d_%m)-$(whoami)-manual -n ${PIPELINE_NAMESPACE}
kubectl create job --from=cronjob/trigger-nightly-pipeline trigger-nightly-pipeline-$(date +%d.%m)-$(whoami)-manual -n ${PIPELINE_NAMESPACE}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

. doesnt work, what about -?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what do you mean it doesnt work?

```

Setup automatic cleanup of old PipelineRun's every week
Expand Down
2 changes: 1 addition & 1 deletion main/pipeline.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Pipeline
metadata:
name: testsuite-pipeline
Expand Down
2 changes: 1 addition & 1 deletion nightly/pipeline.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Pipeline
metadata:
name: nightly-pipeline
Expand Down
4 changes: 2 additions & 2 deletions tasks/kubectl-login-task.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Task
metadata:
name: kubectl-login
Expand Down Expand Up @@ -29,7 +29,7 @@ spec:
- /bin/bash
- -cveo
- pipefail
resources:
computeResources:
limits:
cpu: '250m'
memory: 128Mi
Expand Down
4 changes: 2 additions & 2 deletions tasks/run-tests-task.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Task
metadata:
name: run-tests
Expand Down Expand Up @@ -34,7 +34,7 @@ spec:
- /bin/bash
- -cveo
- pipefail
resources:
computeResources:
limits:
cpu: '1'
memory: 1000Mi
Expand Down
4 changes: 2 additions & 2 deletions tasks/upload-results-task.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: tekton.dev/v1beta1
apiVersion: tekton.dev/v1
kind: Task
metadata:
name: upload-results
Expand All @@ -23,7 +23,7 @@ spec:
- /bin/bash
- -cveo
- pipefail
resources:
computeResources:
limits:
cpu: '250m'
memory: 128Mi
Expand Down