Skip to content

Commit 536e2de

Browse files
fix: vcluster kubeconfig server url (#121)
1 parent def55a7 commit 536e2de

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

charts/cf-vcluster/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: cf-vcluster
33
description: Umbrella chart over vCluster adjusted for Codefresh use cases - mainly in Crossplane compositions
44
type: application
5-
version: 0.28.0-1
5+
version: 0.28.0-2
66
appVersion: "0.28.0"
77
dependencies:
88
- name: vcluster

charts/cf-vcluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cf-vcluster
22

3-
![Version: 0.28.0-1](https://img.shields.io/badge/Version-0.28.0--1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.28.0](https://img.shields.io/badge/AppVersion-0.28.0-informational?style=flat-square)
3+
![Version: 0.28.0-2](https://img.shields.io/badge/Version-0.28.0--2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.28.0](https://img.shields.io/badge/AppVersion-0.28.0-informational?style=flat-square)
44

55
Umbrella chart over vCluster adjusted for Codefresh use cases - mainly in Crossplane compositions
66

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{{- define "cf-vcluster.kubeconfighost" -}}
22
{{ if .Values.global.ingress.public.enabled -}}
3-
{{- tpl (printf "%s.%s" .Values.global.ingress.public.host.name .Values.global.ingress.public.host.domain ) . -}}
3+
{{- tpl (printf "https://%s.%s" .Values.global.ingress.public.host.name .Values.global.ingress.public.host.domain ) . -}}
44
{{- else if .Values.global.ingress.internal.enabled }}
5-
{{- tpl (printf "%s.%s" .Values.global.ingress.internal.host.name .Values.global.ingress.internal.host.domain) . -}}
5+
{{- tpl (printf "https://%s.%s" .Values.global.ingress.internal.host.name .Values.global.ingress.internal.host.domain) . -}}
66
{{- else -}}
7-
{{- printf "%s.%s.svc.cluster.local" .Release.Name .Release.Namespace -}}
7+
{{- printf "https://%s.%s.svc.cluster.local" .Release.Name .Release.Namespace -}}
88
{{- end -}}
99
{{- end -}}

0 commit comments

Comments
 (0)