-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move kettle from k8s-gubernator to kubernetes-public
Signed-off-by: Davanum Srinivas <[email protected]>
- Loading branch information
Showing
18 changed files
with
83 additions
and
125 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
config/jobs/kubernetes/sig-k8s-infra/trusted/sig-test-infra.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
periodics: | ||
- name: metrics-kettle | ||
cluster: k8s-infra-prow-build-trusted | ||
interval: 1h | ||
decorate: true | ||
extra_refs: | ||
- org: kubernetes | ||
repo: test-infra | ||
base_ref: master | ||
spec: | ||
serviceAccountName: k8s-triage | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/bigquery:v20240205-69ac5748ba | ||
args: | ||
- ./kettle/monitor.py | ||
- --stale=6 | ||
- --table | ||
- k8s_infra_kettle:build.all | ||
- k8s_infra_kettle:build.week | ||
- k8s_infra_kettle:build.day | ||
annotations: | ||
testgrid-num-failures-to-alert: '6' | ||
testgrid-alert-stale-results-hours: '12' | ||
testgrid-dashboards: sig-testing-misc | ||
testgrid-alert-email: [email protected], [email protected] | ||
testgrid-broken-column-threshold: '0.5' | ||
description: Monitors Kettle's BigQuery database freshness. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,32 +35,6 @@ periodics: | |
testgrid-broken-column-threshold: '0.5' | ||
description: Runs `make test verify` on the test-infra repo every hour | ||
|
||
- name: metrics-kettle | ||
interval: 1h | ||
decorate: true | ||
extra_refs: | ||
- org: kubernetes | ||
repo: test-infra | ||
base_ref: master | ||
spec: | ||
serviceAccountName: triage | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/bigquery:v20240205-69ac5748ba | ||
args: | ||
- ./kettle/monitor.py | ||
- --stale=6 | ||
- --table | ||
- k8s-gubernator:build.all | ||
- k8s-gubernator:build.week | ||
- k8s-gubernator:build.day | ||
annotations: | ||
testgrid-num-failures-to-alert: '6' | ||
testgrid-alert-stale-results-hours: '12' | ||
testgrid-dashboards: sig-testing-misc | ||
testgrid-alert-email: [email protected], [email protected] | ||
testgrid-broken-column-threshold: '0.5' | ||
description: Monitors Kettle's BigQuery database freshness. | ||
|
||
- name: job-migration-todo-report | ||
decorate: true | ||
interval: 24h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,18 @@ | |
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
annotations: | ||
iam.gke.io/gcp-service-account: [email protected] | ||
name: kettle | ||
namespace: kettle | ||
labels: | ||
app: kettle | ||
annotations: | ||
iam.gke.io/gcp-service-account: [email protected] | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: kettle | ||
namespace: kettle | ||
spec: | ||
replicas: 1 | ||
selector: | ||
|
@@ -23,13 +27,18 @@ spec: | |
serviceAccountName: kettle | ||
containers: | ||
- name: kettle | ||
image: gcr.io/k8s-testimages/kettle:latest | ||
image: gcr.io/k8s-staging-infra-tools/kettle:latest | ||
imagePullPolicy: Always | ||
env: | ||
- name: DEPLOYMENT | ||
value: prod | ||
- name: SUBSCRIPTION_PATH | ||
value: kubernetes-jenkins/gcs-changes/kettle-filtered | ||
resources: | ||
requests: | ||
memory: 4Gi | ||
limits: | ||
memory: 12Gi | ||
volumeMounts: | ||
- name: data | ||
mountPath: /data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,22 @@ | ||
kind: PersistentVolume | ||
apiVersion: v1 | ||
kind: StorageClass | ||
apiVersion: storage.k8s.io/v1 | ||
metadata: | ||
labels: | ||
app: kettle | ||
name: kettle-data | ||
spec: | ||
capacity: | ||
storage: 3001Gi | ||
accessModes: | ||
- ReadWriteOnce | ||
persistentVolumeReclaimPolicy: Retain | ||
gcePersistentDisk: | ||
pdName: kettle-data | ||
fsType: ext4 | ||
name: ssd | ||
provisioner: kubernetes.io/gce-pd | ||
parameters: | ||
type: pd-ssd | ||
--- | ||
kind: PersistentVolumeClaim | ||
apiVersion: v1 | ||
metadata: | ||
labels: | ||
app: kettle | ||
name: kettle-data | ||
namespace: kettle | ||
spec: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 3001Gi | ||
storageClassName: ssd | ||
volumeName: kettle-data | ||
--- | ||
apiVersion: storage.k8s.io/v1 | ||
kind: StorageClass | ||
metadata: | ||
name: ssd | ||
provisioner: kubernetes.io/gce-pd | ||
parameters: | ||
type: pd-ssd | ||
allowVolumeExpansion: true | ||
reclaimPolicy: Delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.