kubeflow@masternode:/nfsroot/kf-poc$ cd .. kubeflow@masternode:/nfsroot$ git clone https://github.com/helm/charts Cloning into 'charts'... remote: Enumerating objects: 84423, done. remote: Total 84423 (delta 0), reused 0 (delta 0), pack-reused 84423 Receiving objects: 100% (84423/84423), 23.65 MiB | 23.15 MiB/s, done. Resolving deltas: 100% (61926/61926), done. kubeflow@masternode:/nfsroot$ cd charts/stable kubeflow@masternode:/nfsroot/charts/stable$ sed -i 's@apiVersion: extensions/v1beta1@apiVersion: policy/v1beta1@' `find . -iregex ".*yaml\|.*yml" -exec awk '/kind:\s+PodSecurityPolicy/ {print FILENAME}' {} +` kubeflow@masternode:/nfsroot/charts/stable$ sed -i 's@apiVersion: extensions/v1beta1@apiVersion: apps/v1@' `find . -iregex ".*yaml\|.*yml" -exec awk '/kind:\s+(Deployment|StatefulSet|ReplicaSet|DaemonSet)/ {print FILENAME}' {} +` kubeflow@masternode:/nfsroot/charts/stable$ helm package ./prometheus Successfully packaged chart and saved it to: /nfsroot/charts/stable/prometheus-9.1.1.tgz kubeflow@masternode:/nfsroot/charts/stable$ helm install /home/vagrant/charts/stable/prometheus-9.1.1.tgz Error: path "/home/vagrant/charts/stable/prometheus-9.1.1.tgz" not found kubeflow@masternode:/nfsroot/charts/stable$ helm install /nfsroot/charts/stable/prometheus-9.1.1.tgz NAME: your-garfish LAST DEPLOYED: Fri Sep 27 10:03:15 2019 NAMESPACE: default STATUS: DEPLOYED RESOURCES: ==> v1/ConfigMap NAME DATA AGE your-garfish-prometheus-alertmanager 1 0s your-garfish-prometheus-server 3 0s ==> v1/DaemonSet NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE your-garfish-prometheus-node-exporter 0 0 0 0 0 0s ==> v1/Deployment NAME READY UP-TO-DATE AVAILABLE AGE your-garfish-prometheus-alertmanager 0/1 0 0 0s your-garfish-prometheus-kube-state-metrics 0/1 0 0 0s your-garfish-prometheus-pushgateway 0/1 0 0 0s your-garfish-prometheus-server 0/1 0 0 0s ==> v1/PersistentVolumeClaim NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE your-garfish-prometheus-alertmanager Bound pvc-030c0427-4185-494c-bf31-ce7daf61d5fe 2Gi RWO nfs 0s your-garfish-prometheus-server Bound pvc-98f401e2-be63-4619-a6f8-7ad5d3e7edf6 8Gi RWO nfs 0s ==> v1/Service NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE your-garfish-prometheus-alertmanager ClusterIP 10.99.62.16 80/TCP 0s your-garfish-prometheus-kube-state-metrics ClusterIP None 80/TCP 0s your-garfish-prometheus-node-exporter ClusterIP None 9100/TCP 0s your-garfish-prometheus-pushgateway ClusterIP 10.99.66.63 9091/TCP 0s your-garfish-prometheus-server ClusterIP 10.110.141.36 80/TCP 0s ==> v1/ServiceAccount NAME SECRETS AGE your-garfish-prometheus-alertmanager 1 0s your-garfish-prometheus-kube-state-metrics 1 0s your-garfish-prometheus-node-exporter 1 0s your-garfish-prometheus-pushgateway 1 0s your-garfish-prometheus-server 1 0s ==> v1beta1/ClusterRole NAME AGE your-garfish-prometheus-alertmanager 0s your-garfish-prometheus-kube-state-metrics 0s your-garfish-prometheus-pushgateway 0s your-garfish-prometheus-server 0s ==> v1beta1/ClusterRoleBinding NAME AGE your-garfish-prometheus-alertmanager 0s your-garfish-prometheus-kube-state-metrics 0s your-garfish-prometheus-pushgateway 0s your-garfish-prometheus-server 0s NOTES: The Prometheus server can be accessed via port 80 on the following DNS name from within your cluster: your-garfish-prometheus-server.default.svc.cluster.local Get the Prometheus server URL by running these commands in the same shell: export POD_NAME=$(kubectl get pods --namespace default -l "app=prometheus,component=server" -o jsonpath="{.items[0].metadata.name}") kubectl --namespace default port-forward $POD_NAME 9090 The Prometheus alertmanager can be accessed via port 80 on the following DNS name from within your cluster: your-garfish-prometheus-alertmanager.default.svc.cluster.local Get the Alertmanager URL by running these commands in the same shell: export POD_NAME=$(kubectl get pods --namespace default -l "app=prometheus,component=alertmanager" -o jsonpath="{.items[0].metadata.name}") kubectl --namespace default port-forward $POD_NAME 9093 ################################################################################# ###### WARNING: Pod Security Policy has been moved to a global property. ##### ###### use .Values.podSecurityPolicy.enabled with pod-based ##### ###### annotations ##### ###### (e.g. .Values.nodeExporter.podSecurityPolicy.annotations) ##### ################################################################################# The Prometheus PushGateway can be accessed via port 9091 on the following DNS name from within your cluster: your-garfish-prometheus-pushgateway.default.svc.cluster.local Get the PushGateway URL by running these commands in the same shell: export POD_NAME=$(kubectl get pods --namespace default -l "app=prometheus,component=pushgateway" -o jsonpath="{.items[0].metadata.name}") kubectl --namespace default port-forward $POD_NAME 9091 For more information on running Prometheus, visit: https://prometheus.io/ kubeflow@masternode:/nfsroot/charts/stable$ export POD_NAME=$(kubectl get pods --namespace default -l "app=prometheus,component=server" -o jsonpath="{.items[0].metadata.name}") kubeflow@masternode:/nfsroot/charts/stable$ kubectl --namespace default port-forward $POD_NAME 9090 Forwarding from 127.0.0.1:9090 -> 9090 Forwarding from [::1]:9090 -> 9090 ^Ckubeflow@masternode:/nfsroot/charts/stable$ kubectl --namespace default port-forward $POD_NAME 9090 & [2] 98139 kubeflow@masternode:/nfsroot/charts/stable$ Forwarding from 127.0.0.1:9090 -> 9090 Forwarding from [::1]:9090 -> 9090 kubeflow@masternode:/nfsroot/charts/stable$ export POD_NAME=$(kubectl get pods --namespace default -l "app=prometheus,component=alertmanager" -o jsonpath="{.items[0].metadata.name}") kubeflow@masternode:/nfsroot/charts/stable$ kubectl --namespace default port-forward $POD_NAME 9093 & [3] 98227 kubeflow@masternode:/nfsroot/charts/stable$ Forwarding from 127.0.0.1:9093 -> 9093 Forwarding from [::1]:9093 -> 9093 kubeflow@masternode:/nfsroot/charts/stable$ export POD_NAME=$(kubectl get pods --namespace default -l "app=prometheus,component=pushgateway" -o jsonpath="{.items[0].metadata.name}") kubeflow@masternode:/nfsroot/charts/stable$ kubectl --namespace default port-forward $POD_NAME 9091 & [4] 98320 kubeflow@masternode:/nfsroot/charts/stable$ Forwarding from 127.0.0.1:9091 -> 9091 Forwarding from [::1]:9091 -> 9091 kubeflow@masternode:/nfsroot/charts/stable$ kubeflow@masternode:/nfsroot/charts/stable$ kubeflow@masternode:/nfsroot/charts/stable$ cd $KFAPP kubeflow@masternode:/nfsroot/kf-poc$ pwd /nfsroot/kf-poc kubeflow@masternode:/nfsroot/kf-poc$ ls -altr total 28 drwxrwxr-x 4 kubeflow kubeflow 4096 Sep 27 08:12 .cache -rw-r--r-- 1 kubeflow kubeflow 5898 Sep 27 09:23 app.yaml drwxrwxr-x 36 kubeflow kubeflow 4096 Sep 27 09:23 kustomize -rwxrwxr-x 1 kubeflow kubeflow 302 Sep 27 09:25 apply.sh drwxrwxr-x 4 kubeflow kubeflow 4096 Sep 27 09:25 . drwxrwxrwx 11 root root 4096 Sep 27 10:03 .. kubeflow@masternode:/nfsroot/kf-poc$ ./apply.sh customresourcedefinition.apiextensions.k8s.io/adapters.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/apikeys.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/attributemanifests.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/authorizations.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/bypasses.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/certificates.certmanager.k8s.io unchanged customresourcedefinition.apiextensions.k8s.io/challenges.certmanager.k8s.io unchanged customresourcedefinition.apiextensions.k8s.io/checknothings.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/circonuses.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/cloudwatches.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/clusterissuers.certmanager.k8s.io unchanged customresourcedefinition.apiextensions.k8s.io/clusterrbacconfigs.rbac.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/deniers.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/destinationrules.networking.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/dogstatsds.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/edges.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/envoyfilters.networking.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/fluentds.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/gateways.networking.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/handlers.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/httpapispecbindings.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/httpapispecs.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/instances.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/issuers.certmanager.k8s.io unchanged customresourcedefinition.apiextensions.k8s.io/kubernetesenvs.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/kuberneteses.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/listcheckers.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/listentries.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/logentries.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/memquotas.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/meshpolicies.authentication.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/metrics.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/noops.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/opas.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/orders.certmanager.k8s.io unchanged customresourcedefinition.apiextensions.k8s.io/policies.authentication.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/prometheuses.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/quotas.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/quotaspecbindings.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/quotaspecs.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/rbacconfigs.rbac.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/rbacs.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/redisquotas.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/reportnothings.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/rules.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/serviceentries.networking.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/servicerolebindings.rbac.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/serviceroles.rbac.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/sidecars.networking.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/signalfxs.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/solarwindses.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/stackdrivers.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/statsds.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/stdios.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/templates.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/tracespans.config.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/virtualservices.networking.istio.io unchanged customresourcedefinition.apiextensions.k8s.io/zipkins.config.istio.io unchanged namespace/istio-system unchanged mutatingwebhookconfiguration.admissionregistration.k8s.io/istio-sidecar-injector configured serviceaccount/istio-citadel-service-account unchanged serviceaccount/istio-cleanup-secrets-service-account unchanged serviceaccount/istio-egressgateway-service-account unchanged serviceaccount/istio-galley-service-account unchanged serviceaccount/istio-grafana-post-install-account unchanged serviceaccount/istio-ingressgateway-service-account unchanged serviceaccount/istio-mixer-service-account unchanged serviceaccount/istio-multi unchanged serviceaccount/istio-pilot-service-account unchanged serviceaccount/istio-security-post-install-account unchanged serviceaccount/istio-sidecar-injector-service-account unchanged serviceaccount/kiali-service-account unchanged serviceaccount/prometheus unchanged role.rbac.authorization.k8s.io/istio-ingressgateway-sds unchanged clusterrole.rbac.authorization.k8s.io/istio-citadel-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-cleanup-secrets-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-egressgateway-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-galley-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-grafana-post-install-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-ingressgateway-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-mixer-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-pilot-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-reader unchanged clusterrole.rbac.authorization.k8s.io/istio-sidecar-injector-istio-system unchanged clusterrole.rbac.authorization.k8s.io/kiali unchanged clusterrole.rbac.authorization.k8s.io/kiali-viewer unchanged clusterrole.rbac.authorization.k8s.io/prometheus-istio-system unchanged clusterrole.rbac.authorization.k8s.io/istio-security-post-install-istio-system unchanged rolebinding.rbac.authorization.k8s.io/istio-ingressgateway-sds unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-citadel-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-cleanup-secrets-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-egressgateway-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-galley-admin-role-binding-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-grafana-post-install-role-binding-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-ingressgateway-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-kiali-admin-role-binding-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-mixer-admin-role-binding-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-multi unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-pilot-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-sidecar-injector-admin-role-binding-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/prometheus-istio-system unchanged clusterrolebinding.rbac.authorization.k8s.io/istio-security-post-install-role-binding-istio-system unchanged configmap/istio unchanged configmap/istio-galley-configuration unchanged configmap/istio-grafana unchanged configmap/istio-grafana-configuration-dashboards-galley-dashboard unchanged configmap/istio-grafana-configuration-dashboards-istio-mesh-dashboard unchanged configmap/istio-grafana-configuration-dashboards-istio-performance-dashboard unchanged configmap/istio-grafana-configuration-dashboards-istio-service-dashboard unchanged configmap/istio-grafana-configuration-dashboards-istio-workload-dashboard unchanged configmap/istio-grafana-configuration-dashboards-mixer-dashboard unchanged configmap/istio-grafana-configuration-dashboards-pilot-dashboard unchanged configmap/istio-grafana-custom-resources unchanged configmap/istio-security-custom-resources unchanged configmap/istio-sidecar-injector unchanged configmap/kiali unchanged configmap/prometheus unchanged secret/kiali unchanged service/grafana unchanged service/istio-citadel unchanged service/istio-egressgateway unchanged service/istio-galley unchanged service/istio-ingressgateway unchanged service/istio-pilot unchanged service/istio-policy unchanged service/istio-sidecar-injector unchanged service/istio-telemetry unchanged service/jaeger-agent unchanged service/jaeger-collector unchanged service/jaeger-query unchanged service/kiali unchanged service/prometheus unchanged service/tracing unchanged service/zipkin unchanged poddisruptionbudget.policy/istio-egressgateway unchanged poddisruptionbudget.policy/istio-galley unchanged poddisruptionbudget.policy/istio-ingressgateway unchanged poddisruptionbudget.policy/istio-pilot unchanged poddisruptionbudget.policy/istio-policy unchanged poddisruptionbudget.policy/istio-telemetry unchanged horizontalpodautoscaler.autoscaling/istio-egressgateway unchanged horizontalpodautoscaler.autoscaling/istio-ingressgateway unchanged horizontalpodautoscaler.autoscaling/istio-pilot unchanged horizontalpodautoscaler.autoscaling/istio-policy unchanged horizontalpodautoscaler.autoscaling/istio-telemetry unchanged job.batch/istio-cleanup-secrets-1.1.6 unchanged job.batch/istio-grafana-post-install-1.1.6 unchanged job.batch/istio-security-post-install-1.1.6 unchanged attributemanifest.config.istio.io/istioproxy unchanged attributemanifest.config.istio.io/kubernetes unchanged handler.config.istio.io/kubernetesenv unchanged handler.config.istio.io/prometheus unchanged handler.config.istio.io/stdio unchanged kubernetes.config.istio.io/attributes unchanged logentry.config.istio.io/accesslog unchanged logentry.config.istio.io/tcpaccesslog unchanged metric.config.istio.io/requestcount unchanged metric.config.istio.io/requestduration unchanged metric.config.istio.io/requestsize unchanged metric.config.istio.io/responsesize unchanged metric.config.istio.io/tcpbytereceived unchanged metric.config.istio.io/tcpbytesent unchanged metric.config.istio.io/tcpconnectionsclosed unchanged metric.config.istio.io/tcpconnectionsopened unchanged rule.config.istio.io/kubeattrgenrulerule unchanged rule.config.istio.io/promhttp unchanged rule.config.istio.io/promtcp unchanged rule.config.istio.io/promtcpconnectionclosed unchanged rule.config.istio.io/promtcpconnectionopen unchanged rule.config.istio.io/stdio unchanged rule.config.istio.io/stdiotcp unchanged rule.config.istio.io/tcpkubeattrgenrulerule unchanged destinationrule.networking.istio.io/istio-policy unchanged destinationrule.networking.istio.io/istio-telemetry unchanged unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" configmap/istio-parameters-tt477f6588 unchanged gateway.networking.istio.io/kubeflow-gateway unchanged serviceentry.networking.istio.io/google-api-entry unchanged serviceentry.networking.istio.io/google-storage-api-entry unchanged virtualservice.networking.istio.io/google-api-vs unchanged virtualservice.networking.istio.io/google-storage-api-vs unchanged virtualservice.networking.istio.io/grafana-vs unchanged clusterrbacconfig.rbac.istio.io/default unchanged customresourcedefinition.apiextensions.k8s.io/applications.app.k8s.io configured serviceaccount/application-controller-service-account unchanged clusterrole.rbac.authorization.k8s.io/application-controller-cluster-role unchanged clusterrolebinding.rbac.authorization.k8s.io/application-controller-cluster-role-binding unchanged configmap/application-controller-parameters unchanged service/application-controller-service unchanged statefulset.apps/application-controller-stateful-set configured application.app.k8s.io/kubeflow unchanged customresourcedefinition.apiextensions.k8s.io/compositecontrollers.metacontroller.k8s.io unchanged customresourcedefinition.apiextensions.k8s.io/controllerrevisions.metacontroller.k8s.io unchanged customresourcedefinition.apiextensions.k8s.io/decoratorcontrollers.metacontroller.k8s.io unchanged serviceaccount/meta-controller-service unchanged clusterrolebinding.rbac.authorization.k8s.io/meta-controller-cluster-role-binding unchanged error: unable to recognize "STDIN": no matches for kind "StatefulSet" in version "apps/v1beta2" customresourcedefinition.apiextensions.k8s.io/workflows.argoproj.io unchanged serviceaccount/argo unchanged serviceaccount/argo-ui unchanged clusterrole.rbac.authorization.k8s.io/argo unchanged clusterrole.rbac.authorization.k8s.io/argo-ui unchanged clusterrolebinding.rbac.authorization.k8s.io/argo unchanged clusterrolebinding.rbac.authorization.k8s.io/argo-ui unchanged configmap/workflow-controller-configmap unchanged configmap/workflow-controller-parameters unchanged service/argo-ui unchanged virtualservice.networking.istio.io/argo-ui unchanged unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" serviceaccount/centraldashboard unchanged role.rbac.authorization.k8s.io/centraldashboard unchanged clusterrole.rbac.authorization.k8s.io/centraldashboard unchanged rolebinding.rbac.authorization.k8s.io/centraldashboard unchanged clusterrolebinding.rbac.authorization.k8s.io/centraldashboard unchanged configmap/parameters unchanged service/centraldashboard unchanged virtualservice.networking.istio.io/centraldashboard unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" serviceaccount/admission-webhook-bootstrap-service-account unchanged clusterrole.rbac.authorization.k8s.io/admission-webhook-bootstrap-cluster-role unchanged clusterrolebinding.rbac.authorization.k8s.io/admission-webhook-bootstrap-cluster-role-binding unchanged configmap/admission-webhook-bootstrap-config-map unchanged statefulset.apps/admission-webhook-bootstrap-stateful-set configured customresourcedefinition.apiextensions.k8s.io/poddefaults.kubeflow.org unchanged mutatingwebhookconfiguration.admissionregistration.k8s.io/admission-webhook-mutating-webhook-configuration configured serviceaccount/admission-webhook-service-account unchanged clusterrole.rbac.authorization.k8s.io/admission-webhook-cluster-role unchanged clusterrolebinding.rbac.authorization.k8s.io/admission-webhook-cluster-role-binding unchanged configmap/admission-webhook-admission-webhook-parameters unchanged service/admission-webhook-service unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" serviceaccount/jupyter-web-app-service-account unchanged role.rbac.authorization.k8s.io/jupyter-web-app-jupyter-notebook-role unchanged clusterrole.rbac.authorization.k8s.io/jupyter-web-app-cluster-role unchanged rolebinding.rbac.authorization.k8s.io/jupyter-web-app-jupyter-notebook-role-binding unchanged clusterrolebinding.rbac.authorization.k8s.io/jupyter-web-app-cluster-role-binding unchanged configmap/jupyter-web-app-config unchanged configmap/jupyter-web-app-parameters unchanged service/jupyter-web-app-service unchanged deployment.apps/jupyter-web-app-deployment unchanged application.app.k8s.io/jupyter-web-app unchanged virtualservice.networking.istio.io/jupyter-web-app unchanged secret/katib-db-secrets unchanged service/katib-db unchanged persistentvolumeclaim/katib-mysql unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" service/katib-manager unchanged service/katib-manager-rest unchanged unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" customresourcedefinition.apiextensions.k8s.io/experiments.kubeflow.org unchanged customresourcedefinition.apiextensions.k8s.io/trials.kubeflow.org unchanged serviceaccount/katib-controller unchanged clusterrole.rbac.authorization.k8s.io/katib-controller unchanged clusterrolebinding.rbac.authorization.k8s.io/katib-controller unchanged configmap/trial-template unchanged Warning: kubectl apply should be used on resource created by either kubectl create --save-config or kubectl apply secret/katib-controller configured service/katib-controller unchanged deployment.apps/katib-controller unchanged serviceaccount/katib-ui unchanged clusterrole.rbac.authorization.k8s.io/katib-ui unchanged clusterrolebinding.rbac.authorization.k8s.io/katib-ui unchanged configmap/katib-parameters unchanged service/katib-ui unchanged virtualservice.networking.istio.io/katib-ui unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" serviceaccount/metadata-ui unchanged role.rbac.authorization.k8s.io/metadata-ui unchanged rolebinding.rbac.authorization.k8s.io/metadata-ui unchanged configmap/metadata-ui-parameters-b6c8ghff7c unchanged secret/metadata-db-secrets unchanged service/metadata-db unchanged service/metadata-service unchanged service/metadata-ui unchanged virtualservice.networking.istio.io/metadata-ui unchanged persistentvolumeclaim/metadata-mysql unchanged unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta2" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" serviceaccount/metrics-collector unchanged clusterrole.rbac.authorization.k8s.io/metrics-collector unchanged clusterrolebinding.rbac.authorization.k8s.io/metrics-collector unchanged configmap/metrics-collector-template unchanged service/katib-suggestion-bayesianoptimization unchanged service/katib-suggestion-grid unchanged service/katib-suggestion-hyperband unchanged service/katib-suggestion-nasrl unchanged service/katib-suggestion-random unchanged unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" customresourcedefinition.apiextensions.k8s.io/notebooks.kubeflow.org configured serviceaccount/notebook-controller-service-account unchanged clusterrole.rbac.authorization.k8s.io/notebook-controller-role unchanged clusterrolebinding.rbac.authorization.k8s.io/notebook-controller-role-binding unchanged configmap/notebook-controller-parameters unchanged service/notebook-controller-service unchanged application.app.k8s.io/notebook-controller unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta1" customresourcedefinition.apiextensions.k8s.io/pytorchjobs.kubeflow.org unchanged serviceaccount/pytorch-operator unchanged clusterrole.rbac.authorization.k8s.io/pytorch-operator unchanged clusterrolebinding.rbac.authorization.k8s.io/pytorch-operator unchanged configmap/pytorch-operator-config unchanged service/pytorch-operator unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" serviceaccount/spartakus unchanged clusterrole.rbac.authorization.k8s.io/spartakus unchanged clusterrolebinding.rbac.authorization.k8s.io/spartakus unchanged configmap/spartakus-parameters unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" configmap/parameters-dgd4h256h5 configured service/tensorboard unchanged virtualservice.networking.istio.io/tensorboard unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta1" customresourcedefinition.apiextensions.k8s.io/tfjobs.kubeflow.org unchanged serviceaccount/tf-job-dashboard unchanged serviceaccount/tf-job-operator unchanged clusterrole.rbac.authorization.k8s.io/tf-job-dashboard unchanged clusterrole.rbac.authorization.k8s.io/tf-job-operator unchanged clusterrolebinding.rbac.authorization.k8s.io/tf-job-dashboard unchanged clusterrolebinding.rbac.authorization.k8s.io/tf-job-operator unchanged configmap/parameters-dgd4h256h5 configured configmap/tf-job-operator-config unchanged service/tf-job-dashboard unchanged service/tf-job-operator unchanged virtualservice.networking.istio.io/tf-job-dashboard unchanged unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" unable to recognize "STDIN": no matches for kind "Deployment" in version "extensions/v1beta1" serviceaccount/ml-pipeline unchanged role.rbac.authorization.k8s.io/ml-pipeline unchanged rolebinding.rbac.authorization.k8s.io/ml-pipeline unchanged service/ml-pipeline unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta2" configmap/pipeline-minio-parameters unchanged secret/mlpipeline-minio-artifact unchanged service/minio-service unchanged persistentvolumeclaim/minio-pv-claim unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta1" configmap/pipeline-mysql-parameters unchanged service/mysql unchanged persistentvolumeclaim/mysql-pv-claim unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta2" serviceaccount/ml-pipeline-persistenceagent unchanged clusterrole.rbac.authorization.k8s.io/ml-pipeline-persistenceagent unchanged clusterrolebinding.rbac.authorization.k8s.io/ml-pipeline-persistenceagent unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta2" serviceaccount/pipeline-runner unchanged clusterrole.rbac.authorization.k8s.io/pipeline-runner unchanged clusterrolebinding.rbac.authorization.k8s.io/pipeline-runner unchanged serviceaccount/ml-pipeline-ui unchanged role.rbac.authorization.k8s.io/ml-pipeline-ui unchanged rolebinding.rbac.authorization.k8s.io/ml-pipeline-ui unchanged configmap/ui-parameters-hb792fcf5d unchanged service/ml-pipeline-tensorboard-ui unchanged service/ml-pipeline-ui unchanged virtualservice.networking.istio.io/ml-pipeline-tensorboard-ui unchanged virtualservice.networking.istio.io/ml-pipeline-ui unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta2" customresourcedefinition.apiextensions.k8s.io/viewers.kubeflow.org unchanged serviceaccount/ml-pipeline-viewer-crd-service-account unchanged clusterrole.rbac.authorization.k8s.io/ml-pipeline-viewer-controller-role unchanged clusterrolebinding.rbac.authorization.k8s.io/ml-pipeline-viewer-crd-role-binding unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta2" customresourcedefinition.apiextensions.k8s.io/scheduledworkflows.kubeflow.org unchanged serviceaccount/ml-pipeline-scheduledworkflow unchanged role.rbac.authorization.k8s.io/ml-pipeline-scheduledworkflow unchanged clusterrolebinding.rbac.authorization.k8s.io/ml-pipeline-scheduledworkflow unchanged error: unable to recognize "STDIN": no matches for kind "Deployment" in version "apps/v1beta2" customresourcedefinition.apiextensions.k8s.io/profiles.kubeflow.org configured serviceaccount/profiles-controller-service-account unchanged serviceaccount/profiles-default-service-account unchanged role.rbac.authorization.k8s.io/profiles-default-role unchanged rolebinding.rbac.authorization.k8s.io/profiles-default-role-binding unchanged clusterrolebinding.rbac.authorization.k8s.io/profiles-cluster-role-binding unchanged configmap/profiles-profiles-parameters-t4hd69826h unchanged service/profiles-kfam unchanged deployment.apps/profiles-deployment unchanged virtualservice.networking.istio.io/kfam unchanged serviceaccount/seldon-manager unchanged clusterrole.rbac.authorization.k8s.io/seldon-operator-manager-role unchanged clusterrolebinding.rbac.authorization.k8s.io/seldon-operator-manager-rolebinding unchanged secret/seldon-operator-webhook-server-secret unchanged service/seldon-operator-controller-manager-service unchanged statefulset.apps/seldon-operator-controller-manager configured application.app.k8s.io/seldon-core-operator configured The CustomResourceDefinition "seldondeployments.machinelearning.seldon.io" is invalid: * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[graph].properties[children].items.properties[children].items.properties[children].items: Required value: must be specified * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[graph].properties[children].items.properties[children].items.properties[endpoint].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[graph].properties[children].items.properties[children].items.type: Required value: must not be empty for specified array items * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[graph].properties[children].items.properties[endpoint].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[graph].properties[children].items.type: Required value: must not be empty for specified array items * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[graph].properties[endpoint].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[graph].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[svcOrchSpec].properties[env].items.properties[valueFrom].properties[configMapKeyRef].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[svcOrchSpec].properties[env].items.properties[valueFrom].properties[fieldRef].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[svcOrchSpec].properties[env].items.properties[valueFrom].properties[resourceFieldRef].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[svcOrchSpec].properties[env].items.properties[valueFrom].properties[secretKeyRef].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[svcOrchSpec].properties[env].items.properties[valueFrom].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[svcOrchSpec].properties[env].items.type: Required value: must not be empty for specified array items * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.properties[svcOrchSpec].properties[resources].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.properties[spec].properties[predictors].items.type: Required value: must not be empty for specified array items * spec.validation.openAPIV3Schema.properties[spec].type: Required value: must not be empty for specified object fields * spec.validation.openAPIV3Schema.type: Required value: must not be empty at the root kubeflow@masternode:/nfsroot/kf-poc$