Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

helm: Update hubble-ui chart #11273

Merged
merged 1 commit into from May 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,4 +1,3 @@
{{- if .Values.global.hubble.ui.enabled }}
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
Expand Down Expand Up @@ -41,4 +40,3 @@ rules:
- get
- list
- watch
{{- end }}
@@ -1,4 +1,3 @@
{{- if .Values.global.hubble.ui.enabled }}
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
Expand All @@ -11,4 +10,3 @@ subjects:
- kind: ServiceAccount
namespace: {{ .Release.Namespace }}
name: hubble-ui
{{- end }}
@@ -1,4 +1,3 @@
{{- if .Values.global.hubble.ui.enabled }}
kind: Deployment
apiVersion: apps/v1
metadata:
Expand Down Expand Up @@ -35,4 +34,3 @@ spec:
name: http
resources:
{{- toYaml .Values.resources | trim | nindent 12 }}
{{- end }}
@@ -1,4 +1,4 @@
{{- if and .Values.global.hubble.ui.enabled .Values.ingress.enabled -}}
{{- if .Values.ingress.enabled -}}
{{- $ingressPath := .Values.ingress.path -}}
apiVersion: extensions/v1beta1
kind: Ingress
Expand Down
@@ -1,4 +1,3 @@
{{- if .Values.global.hubble.ui.enabled }}
apiVersion: v1
kind: ServiceAccount
metadata:
Expand Down
2 changes: 0 additions & 2 deletions install/kubernetes/cilium/charts/hubble-ui/templates/svc.yaml
@@ -1,4 +1,3 @@
{{- if .Values.global.hubble.ui.enabled }}
kind: Service
apiVersion: v1
metadata:
Expand All @@ -12,4 +11,3 @@ spec:
port: 12000
targetPort: 12000
type: ClusterIP
{{- end }}
8 changes: 5 additions & 3 deletions install/kubernetes/cilium/charts/hubble-ui/values.yaml
Expand Up @@ -2,10 +2,12 @@
image:
# repository of the docker image
repository: quay.io/cilium/hubble-ui
# tag is the container image tag to use
tag: latest
# tag is the container image tag to use.
# Ref: https://github.com/cilium/hubble-ui/releases
# Ref: https://quay.io/repository/cilium/hubble-ui?tab=tags
tag: v0.5.0
# pullPolicy is the container image pull policy
pullPolicy: Always
pullPolicy: IfNotPresent
clusterDomain: cluster.local
replicas: 1
# Resource requests and limits for the 'hubble-ui' container of the 'hubble-ui' deployment, such as
Expand Down