forked from kubeflow/manifests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* knative: Update README for v1.4.0 Signed-off-by: Kimonas Sotirchos <[email protected]> * knative: wget latest manifests Signed-off-by: Kimonas Sotirchos <[email protected]> * knative: Remove all comments Signed-off-by: Kimonas Sotirchos <[email protected]> * knative: Remove knative-ingress-gateway Had to manually remove a `{}` object at the end, introduced by the yq command. Signed-off-by: Kimonas Sotirchos <[email protected]> * knative: Update README for removing {} Signed-off-by: Kimonas Sotirchos <[email protected]> * knative: Set metadata.name in post-install-job Signed-off-by: Kimonas Sotirchos <[email protected]> * knative-eventing: Update with v1.4.0 manifests Signed-off-by: Kimonas Sotirchos <[email protected]> * knative-eventing: Remove comments Signed-off-by: Kimonas Sotirchos <[email protected]> * knative-eventing: Remove anchors Signed-off-by: Kimonas Sotirchos <[email protected]> * knative-eventing: Install only core Signed-off-by: Kimonas Sotirchos <[email protected]> (cherry picked from commit c602b5c)
- Loading branch information
1 parent
969e00a
commit 8fde18a
Showing
9 changed files
with
7,260 additions
and
5,042 deletions.
There are no files selected for viewing
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
113 changes: 0 additions & 113 deletions
113
common/knative/knative-eventing-post-install-jobs/base/eventing-post-install-jobs.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 |
---|---|---|
@@ -1,114 +1 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: knative-eventing-post-install-job-role | ||
labels: | ||
eventing.knative.dev/release: "v0.22.1" | ||
rules: | ||
- apiGroups: | ||
- "apiextensions.k8s.io" | ||
resources: | ||
- "customresourcedefinitions" | ||
- "customresourcedefinitions/status" | ||
verbs: | ||
- "get" | ||
- "list" | ||
- "update" | ||
- "patch" | ||
- "watch" | ||
- apiGroups: | ||
- "sources.knative.dev" | ||
resources: | ||
- "pingsources" | ||
verbs: | ||
- "get" | ||
- "list" | ||
- "create" | ||
- "update" | ||
- "delete" | ||
- "patch" | ||
- "watch" | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- "namespaces" | ||
verbs: | ||
- "get" | ||
- "list" | ||
--- | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: v0.22.0-pingsource-cleanup | ||
namespace: knative-eventing | ||
labels: | ||
eventing.knative.dev/release: "v0.22.1" | ||
spec: | ||
ttlSecondsAfterFinished: 600 | ||
template: | ||
metadata: | ||
annotations: | ||
sidecar.istio.io/inject: "false" | ||
spec: | ||
serviceAccountName: knative-eventing-post-install-job | ||
restartPolicy: Never | ||
containers: | ||
- name: pingsource | ||
image: gcr.io/knative-releases/knative.dev/eventing/cmd/v0.22/pingsource-cleanup@sha256:837b8d5cfe38afa297d25e7aed30ec8df80f721a084d4fdcc614d65afde4c528 | ||
env: | ||
- name: SYSTEM_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
--- | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: knative-eventing-post-install-job | ||
namespace: knative-eventing | ||
labels: | ||
eventing.knative.dev/release: "v0.22.1" | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: knative-eventing-post-install-job-role-binding | ||
labels: | ||
eventing.knative.dev/release: "v0.22.1" | ||
subjects: | ||
- kind: ServiceAccount | ||
name: knative-eventing-post-install-job | ||
namespace: knative-eventing | ||
roleRef: | ||
kind: ClusterRole | ||
name: knative-eventing-post-install-job-role | ||
apiGroup: rbac.authorization.k8s.io | ||
--- | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: v0.21-storage-version-migration | ||
namespace: knative-eventing | ||
labels: | ||
app: "storage-version-migration" | ||
eventing.knative.dev/release: "v0.22.1" | ||
spec: | ||
ttlSecondsAfterFinished: 600 | ||
backoffLimit: 10 | ||
template: | ||
metadata: | ||
labels: | ||
app: "storage-version-migration" | ||
eventing.knative.dev/release: "v0.22.1" | ||
annotations: | ||
sidecar.istio.io/inject: "false" | ||
spec: | ||
serviceAccountName: knative-eventing-post-install-job | ||
restartPolicy: OnFailure | ||
containers: | ||
- name: migrate | ||
image: gcr.io/knative-releases/knative.dev/eventing/vendor/knative.dev/pkg/apiextensions/storageversion/cmd/migrate@sha256:ef150a99d5b18781746d3934f181a766b27a975cb7593d9283fbd040e9ebfe5b | ||
args: | ||
- "pingsources.sources.knative.dev" | ||
--- | ||
|
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
Oops, something went wrong.