forked from kubeflow/kubeflow
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added config files for kfctl_gcp_iap, kfctl-gcp-e2e-pipelinerun.yaml * update location of kfctl_gcp_iap * updated kfctl revision * error in kfctl-gcp-e2e-pipelinerun.yaml * mapping value * map values * remove testing_repo, kfctl_repo * changed jupyter-web-app to use instance * update manifests to use PR * instance update * leave generateName blank in params.env * update to application instance * change configmap name * add additional varReferences * update unit tests * added application to admission-webhook, argo, profile, pipeline * use kfctl_gcp_iap from the PR * update unit tests * add generateName parameter * added generateName to kfct_anthos, kfctl_aws * update kfctl_aws_cognito.yaml, kfctl_gcp_iap.yaml with generateName * added generateName to kfctl_existing_arriko.yaml * added kfctl_gcp_basic_auth.yaml * added kfctl_k8s_istio * update params.yaml, unit tests * StatefulSet -> Deployment * use different config map name * fix for seldon-core * update unit tests * add katib application * added katib-suggestion
- Loading branch information
1 parent
3e85b3c
commit e97671c
Showing
209 changed files
with
6,396 additions
and
440 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
admission-webhook/bootstrap/overlays/application/application.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,21 @@ | ||
apiVersion: app.k8s.io/v1beta1 | ||
kind: Application | ||
metadata: | ||
name: $(generateName) | ||
spec: | ||
componentKinds: | ||
- group: apps | ||
kind: StatefulSet | ||
- group: core | ||
kind: ServiceAccount | ||
- group: core | ||
kind: ConfigMap | ||
descriptor: | ||
type: "admission-webhook-bootstrap" | ||
version: "v1alpha1" | ||
description: "admission-webhook bootstrap installs the admission-webhook controller" | ||
keywords: | ||
- "admission-webook" | ||
links: | ||
- description: About | ||
url: "https://github.com/kubeflow/kubeflow/tree/master/components/admission-webhook" |
26 changes: 26 additions & 0 deletions
26
admission-webhook/bootstrap/overlays/application/kustomization.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,26 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
bases: | ||
- ../../base | ||
resources: | ||
- application.yaml | ||
configMapGenerator: | ||
- name: admission-webhook-bootstrap-parameters | ||
env: params.env | ||
vars: | ||
- name: generateName | ||
objref: | ||
kind: ConfigMap | ||
name: admission-webhook-bootstrap-parameters | ||
apiVersion: v1 | ||
fieldref: | ||
fieldpath: data.generateName | ||
configurations: | ||
- params.yaml | ||
commonLabels: | ||
app.kubernetes.io/name: admission-webhook-bootstrap | ||
app.kubernetes.io/instance: $(generateName) | ||
app.kubernetes.io/managed-by: kfctl | ||
app.kubernetes.io/component: admission-webhook | ||
app.kubernetes.io/part-of: kubeflow | ||
app.kubernetes.io/version: v0.6 |
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 @@ | ||
generateName= |
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,9 @@ | ||
varReference: | ||
- path: metadata/name | ||
kind: Application | ||
- path: spec/selector/app.kubernetes.io\/instance | ||
kind: Service | ||
- path: spec/selector/matchLabels/app.kubernetes.io\/instance | ||
kind: StatefulSet | ||
- path: spec/template/metadata/labels/app.kubernetes.io\/instance | ||
kind: StatefulSet |
23 changes: 23 additions & 0 deletions
23
admission-webhook/webhook/overlays/application/application.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,23 @@ | ||
apiVersion: app.k8s.io/v1beta1 | ||
kind: Application | ||
metadata: | ||
name: $(generateName) | ||
spec: | ||
componentKinds: | ||
- group: apps | ||
kind: Deployment | ||
- group: admissionregistration.k8s.io | ||
kind: MutatingWebhookConfiguration | ||
- group: core | ||
kind: ServiceAccount | ||
- group: core | ||
kind: Service | ||
descriptor: | ||
type: "admission-webhook-webhook" | ||
version: "v1alpha1" | ||
description: "admission-webhook webhook injects common data (env vars, volumes) into notebooks" | ||
keywords: | ||
- "admission-webook" | ||
links: | ||
- description: About | ||
url: "https://github.com/kubeflow/kubeflow/tree/master/components/admission-webhook" |
26 changes: 26 additions & 0 deletions
26
admission-webhook/webhook/overlays/application/kustomization.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,26 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
bases: | ||
- ../../base | ||
resources: | ||
- application.yaml | ||
configMapGenerator: | ||
- name: admission-webhook-webhook-parameters | ||
env: params.env | ||
vars: | ||
- name: generateName | ||
objref: | ||
kind: ConfigMap | ||
name: admission-webhook-webhook-parameters | ||
apiVersion: v1 | ||
fieldref: | ||
fieldpath: data.generateName | ||
configurations: | ||
- params.yaml | ||
commonLabels: | ||
app.kubernetes.io/name: admission-webhook-webhook | ||
app.kubernetes.io/instance: $(generateName) | ||
app.kubernetes.io/managed-by: kfctl | ||
app.kubernetes.io/component: admission-webhook | ||
app.kubernetes.io/part-of: kubeflow | ||
app.kubernetes.io/version: v0.6 |
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 @@ | ||
generateName= |
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,9 @@ | ||
varReference: | ||
- path: metadata/name | ||
kind: Application | ||
- path: spec/selector/app.kubernetes.io\/instance | ||
kind: Service | ||
- path: spec/selector/matchLabels/app.kubernetes.io\/instance | ||
kind: Deployment | ||
- path: spec/template/metadata/labels/app.kubernetes.io\/instance | ||
kind: Deployment |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
generateName= |
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,9 @@ | ||
varReference: | ||
- path: metadata/name | ||
kind: Application | ||
- path: spec/selector/app.kubernetes.io\/instance | ||
kind: Service | ||
- path: spec/selector/matchLabels/app.kubernetes.io\/instance | ||
kind: StatefulSet | ||
- path: spec/template/metadata/labels/app.kubernetes.io\/instance | ||
kind: StatefulSet |
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 |
---|---|---|
|
@@ -8,4 +8,3 @@ apiVersion: v1 | |
kind: ServiceAccount | ||
metadata: | ||
name: argo-ui | ||
namespace: kubeflow |
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ metadata: | |
labels: | ||
app: argo-ui | ||
name: argo-ui | ||
namespace: kubeflow | ||
spec: | ||
ports: | ||
- port: 80 | ||
|
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,23 @@ | ||
apiVersion: app.k8s.io/v1beta1 | ||
kind: Application | ||
metadata: | ||
name: $(generateName) | ||
spec: | ||
componentKinds: | ||
- group: core | ||
kind: ConfigMap | ||
- group: apps | ||
kind: Deployment | ||
- group: core | ||
kind: ServiceAccount | ||
- group: core | ||
kind: Service | ||
descriptor: | ||
type: "argo" | ||
version: "v1beta1" | ||
description: "installs argo controller to handle argo Workflows" | ||
keywords: | ||
- "argo" | ||
links: | ||
- description: About | ||
url: "https://argoproj.github.io/argo" |
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,26 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
bases: | ||
- ../../base | ||
resources: | ||
- application.yaml | ||
configMapGenerator: | ||
- name: argo-app-parameters | ||
env: params.env | ||
vars: | ||
- name: generateName | ||
objref: | ||
kind: ConfigMap | ||
name: argo-app-parameters | ||
apiVersion: v1 | ||
fieldref: | ||
fieldpath: data.generateName | ||
configurations: | ||
- params.yaml | ||
commonLabels: | ||
app.kubernetes.io/name: argo | ||
app.kubernetes.io/instance: $(generateName) | ||
app.kubernetes.io/managed-by: kfctl | ||
app.kubernetes.io/component: argo | ||
app.kubernetes.io/part-of: kubeflow | ||
app.kubernetes.io/version: v0.6 |
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 @@ | ||
generateName= |
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,9 @@ | ||
varReference: | ||
- path: metadata/name | ||
kind: Application | ||
- path: spec/selector/app.kubernetes.io\/instance | ||
kind: Service | ||
- path: spec/selector/matchLabels/app.kubernetes.io\/instance | ||
kind: Deployment | ||
- path: spec/template/metadata/labels/app.kubernetes.io\/instance | ||
kind: Deployment |
10 changes: 1 addition & 9 deletions
10
common/centraldashboard/overlays/application/application.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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
generateName= |
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,9 @@ | ||
varReference: | ||
- path: metadata/name | ||
kind: Application | ||
- path: spec/selector/app.kubernetes.io\/instance | ||
kind: Service | ||
- path: spec/selector/matchLabels/app.kubernetes.io\/instance | ||
kind: Deployment | ||
- path: spec/template/metadata/labels/app.kubernetes.io\/instance | ||
kind: Deployment |
10 changes: 1 addition & 9 deletions
10
jupyter/jupyter-web-app/overlays/application/application.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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
generateName= |
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,9 @@ | ||
varReference: | ||
- path: metadata/name | ||
kind: Application | ||
- path: spec/selector/app.kubernetes.io\/instance | ||
kind: Service | ||
- path: spec/selector/matchLabels/app.kubernetes.io\/instance | ||
kind: Deployment | ||
- path: spec/template/metadata/labels/app.kubernetes.io\/instance | ||
kind: Deployment |
Oops, something went wrong.