Skip to content

Commit 7dac021

Browse files
move tekton tasks to scalability namespace
1 parent a6ab9fd commit 7dac021

File tree

10 files changed

+13
-14
lines changed

10 files changed

+13
-14
lines changed

infrastructure/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ As an example, below are the parmeters used if you want to selectively enable so
9494
```shell
9595
cdk bootstrap
9696
cdk deploy KITInfrastructure --no-rollback \
97-
-c TestNamespace="tekton-pipelines" \
97+
-c TestNamespace="scalability" \
9898
-c TestServiceAccount="tekton-pipelines-executor" \
9999
-c AWSEBSCSIDriverAddon=false \
100100
-c KarpenterAddon=false \

tests/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Tekton is a powerful and flexible open-source framework for creating CI/CD syste
1111
### Installing tekton pipelines
1212
```
1313
cd tests
14-
kubectl apply -n tekton-pipelines -f tasks -R
15-
kubectl apply -n tekton-pipelines -f pipelines -R
14+
kubectl apply -n scalability -f tasks -R
15+
kubectl apply -n scalability -f pipelines -R
1616
```
1717

1818
### Running a single pipelinerun
@@ -86,7 +86,7 @@ spec:
8686
containers:
8787
- name: curl
8888
image: curlimages/curl
89-
args: ["curl", "-X", "POST", "--data", "{}", "el-awscli-eks-load-5k.tekton-pipelines.svc.cluster.local:8080"]
89+
args: ["curl", "-X", "POST", "--data", "{}", "el-awscli-eks-load-5k.scalability.svc.cluster.local:8080"]
9090
restartPolicy: Never
9191
---
9292
apiVersion: triggers.tekton.dev/v1alpha1

tests/pipelines/cleanup/cronjob.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ spec:
3939
name: workspace
4040
env:
4141
- name: SINK_URL
42-
value: "http://el-tekton-cd.tekton-pipelines.svc.cluster.local:8080"
42+
value: "http://el-tekton-cd.scalability.svc.cluster.local:8080"
4343
- name: NAMESPACE
44-
value: "tekton-pipelines"
44+
value: "scalability"
4545
- name: CLEANUP_KEEP
4646
value: "50"
4747
restartPolicy: Never

tests/tasks/addons/cw-metric.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: tekton.dev/v1beta1
22
kind: Task
33
metadata:
44
name: cloudwatch
5-
namespace: tekton-pipelines
5+
namespace: scalability
66
spec:
77
description: "Cloudwatch task publishes the provided metric data points to Amazon CloudWatch. More details can be found in the aws cli reference doc: https://awscli.amazonaws.com/v2/documentation/api/2.1.29/reference/cloudwatch/put-metric-data.html"
88
params:

tests/tasks/addons/fluentbit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: tekton.dev/v1beta1
33
kind: Task
44
metadata:
55
name: eks-addon-fluentbit
6-
namespace: tekton-pipelines
6+
namespace: scalability
77
spec:
88
description: |
99
This task installs the FluentBit addon on an EKS cluster.

tests/tasks/generators/manual-deployment/deploy-pods-with-size.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: tekton.dev/v1beta1
33
kind: Task
44
metadata:
55
name: deploy-pods-with-size
6-
namespace: tekton-pipelines
6+
namespace: scalability
77
annotations:
88
tekton.dev/pipelines.minVersion: "0.17.0"
99
tekton.dev/categories: Kubernetes
@@ -67,4 +67,3 @@ spec:
6767
kubectl --kubeconfig=/tmp/kubeconfig apply -f /tmp/deploy.yaml
6868
echo "Get pods"
6969
kubectl --kubeconfig=/tmp/kubeconfig get pod -A
70-

tests/tasks/setup/eks/awscli-role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: tekton.dev/v1beta1
22
kind: Task
33
metadata:
44
name: awscli-role-create
5-
namespace: tekton-pipelines
5+
namespace: scalability
66
spec:
77
description: |
88
Creates Roles from CFN json stack.

tests/tasks/teardown/awscli-eks-fargate.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: tekton.dev/v1beta1
33
kind: Task
44
metadata:
55
name: awscli-eks-fargate-profile-teardown
6-
namespace: tekton-pipelines
6+
namespace: scalability
77
spec:
88
description: |
99
Teardown an EKS fargate profile for a cluster.

tests/tasks/teardown/awscli-vpc-delete.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: tekton.dev/v1beta1
22
kind: Task
33
metadata:
44
name: awscli-delete-vpc
5-
namespace: tekton-pipelines
5+
namespace: scalability
66
spec:
77
description: |
88
This Task can be used to delete CloudFormation stack containing VPC resources that was used for EKS clusters.

tests/tasks/teardown/kitctl.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: tekton.dev/v1beta1
33
kind: Task
44
metadata:
55
name: teardown
6-
namespace: tekton-pipelines
6+
namespace: scalability
77
annotations:
88
tekton.dev/pipelines.minVersion: "0.17.0"
99
tekton.dev/categories: Kubernetes

0 commit comments

Comments
 (0)