Skip to content

Commit

Permalink
chore: align version chip
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Jogeleit <frank.jogeleit@lovoo.com>
  • Loading branch information
Frank Jogeleit committed Sep 22, 2023
1 parent c483f00 commit bd27796
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ backend/coverage.out
backend/dist
backend/pkg/server/ui/dist
backend/backend
/values.yaml
/values*.yaml
16 changes: 16 additions & 0 deletions charts/kyverno-playground/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,21 @@ spec:
servicePort: {{ $svcPort }}
{{- end }}
{{- end }}
{{- range .additionalPaths }}
- path: {{ .path }}
{{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }}
pathType: {{ .pathType }}
{{- end }}
backend:
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
service:
name: {{ .fullName }}
port:
number: {{ .port }}
{{- else }}
serviceName: {{ .fullName }}
servicePort: {{ .port }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion frontend/src/components/AppBar/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="app-logo">
<template v-if="display.mdAndUp.value">
<v-img src="/kyverno-logo.png" />
<v-chip size="small" style="position: absolute; bottom: 12px; right: -55px">v1.11-beta</v-chip>
<v-chip size="small" style="position: absolute; bottom: 12px; right: -80px">v1.11-beta</v-chip>
</template>
<template v-if="display.smAndDown.value">
<v-img src="/favicon.png" width="80" />
Expand Down

0 comments on commit bd27796

Please sign in to comment.