Skip to content

Commit

Permalink
update kustomize (#2111)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoning777 authored and k8s-ci-robot committed Sep 13, 2019
1 parent fae0361 commit f21d3ed
Showing 1 changed file with 91 additions and 31 deletions.
122 changes: 91 additions & 31 deletions manifests/kustomize/namespaced-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,22 @@ type: Opaque
---
apiVersion: v1
kind: Service
metadata:
labels:
app: metadata
name: metadata-envoy-service
namespace: kubeflow
spec:
ports:
- name: md-envoy
port: 9090
protocol: TCP
selector:
component: metadata-envoy
type: ClusterIP
---
apiVersion: v1
kind: Service
metadata:
labels:
app: metadata
Expand Down Expand Up @@ -645,6 +661,78 @@ spec:
apiVersion: apps/v1beta2
kind: Deployment
metadata:
labels:
component: metadata-server
name: metadata-deployment
namespace: kubeflow
spec:
replicas: 1
selector:
matchLabels:
component: metadata-server
template:
metadata:
labels:
component: metadata-server
spec:
containers:
- args:
- --grpc_port=8080
- --mysql_config_host=mysql
- --mysql_config_database=metadb
- --mysql_config_port=3306
- --mysql_config_user=$(DBCONFIG_USER)
- --mysql_config_password=$(DBCONFIG_PASSWORD)
command:
- /bin/metadata_store_server
env:
- name: DBCONFIG_USER
valueFrom:
secretKeyRef:
key: username
name: mysql-credential
- name: DBCONFIG_PASSWORD
valueFrom:
secretKeyRef:
key: password
name: mysql-credential
image: gcr.io/tfx-oss-public/ml_metadata_store_server:0.14.0
name: container
ports:
- containerPort: 8080
name: md-backendapi
---
apiVersion: apps/v1beta2
kind: Deployment
metadata:
labels:
component: metadata-envoy
name: metadata-envoy
namespace: kubeflow
spec:
replicas: 1
selector:
matchLabels:
component: metadata-envoy
template:
metadata:
labels:
component: metadata-envoy
spec:
containers:
- image: gcr.io/ml-pipeline/envoy:initial
name: container
ports:
- containerPort: 9090
name: md-envoy
- containerPort: 9901
name: envoy-admin
---
apiVersion: apps/v1beta2
kind: Deployment
metadata:
labels:
app: minio
name: minio
namespace: kubeflow
spec:
Expand Down Expand Up @@ -809,7 +897,7 @@ spec:
app: ml-pipeline-visualizationserver
spec:
containers:
- image: gcr.io/ml-pipeline/visualization-server:0.1.26
- image: gcr.io/ml-pipeline/visualization-server:0.1.27
imagePullPolicy: IfNotPresent
name: ml-pipeline-visualizationserver
ports:
Expand Down Expand Up @@ -848,6 +936,8 @@ spec:
apiVersion: apps/v1beta2
kind: Deployment
metadata:
labels:
app: mysql
name: mysql
namespace: kubeflow
spec:
Expand Down Expand Up @@ -953,36 +1043,6 @@ spec:
serviceAccountName: argo
terminationGracePeriodSeconds: 30
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
component: metadata-server
name: metadata-deployment
namespace: kubeflow
spec:
replicas: 1
selector:
matchLabels:
component: metadata-server
template:
metadata:
labels:
component: metadata-server
spec:
containers:
- command:
- ./server/server
- --http_port=8080
- --mysql_service_host=mysql
- --mysql_service_port=3306
- --mlmd_db_name=metadb
image: gcr.io/kubeflow-images-public/metadata:v0.1.8
name: container
ports:
- containerPort: 8080
name: md-backendapi
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
Expand Down

0 comments on commit f21d3ed

Please sign in to comment.