gke pipelines-as-code immediately maxes out Persistent Disk SSD (GB) quota on Compute Engine API
Opened this issue · 3 comments
briankurilko commented
When I apply the following Kubernetes manifests on the default GKE cluster:
# Install tekton pipelines and tasks
kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml
# Install tekton operators for tekton config
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/latest/release.yaml
# Install Tekton dashboard
kubectl apply --filename https://storage.googleapis.com/tekton-releases/dashboard/latest/release.yaml
# View Tekton dashboard
kubectl proxy
# Install pipelines-as-code on Kubernetes
kubectl apply -f https://raw.githubusercontent.com/openshift-pipelines/pipelines-as-code/stable/release.k8s.yaml
As well as creating the following Ingress:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
labels:
pipelines-as-code/route: controller
name: pipelines-as-code
namespace: pipelines-as-code
annotations:
kubernetes.io/ingress.class: gce
spec:
defaultBackend:
service:
name: pipelines-as-code-controller
port:
number: 8080
My cluster immediately hits the following quota
Why is this? What in Tekton is using so much Persistent Disk SSD storage? Nothing else is running on this project.
chmouel commented
chmouel commented
can you try without pipelines-as-code does this takes way less ?
chmouel commented