Skip to content

fix: issues with mindthegap deplotment #660

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

Merged
merged 10 commits into from
May 16, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,35 @@ data:
cilium: |
ChartName: cilium
ChartVersion: 1.15.0
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
cluster-autoscaler: |
ChartName: cluster-autoscaler
ChartVersion: 9.35.0
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
metallb: |
ChartName: metallb
ChartVersion: v0.14.5
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
nfd: |
ChartName: node-feature-discovery
ChartVersion: v0.15.2
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
ChartVersion: 0.15.2
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
nutanix-ccm: |
ChartName: nutanix-cloud-provider
ChartVersion: 0.3.3
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
nutanix-snapshot-csi: |
ChartName: nutanix-csi-snapshot
ChartVersion: 6.3.2
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
nutanix-storage-csi: |
ChartName: nutanix-csi-storage
ChartVersion: v3.0.0-beta.1912
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
ChartVersion: 3.0.0-beta.1912
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
tigera-operator: |
ChartName: tigera-operator
ChartVersion: v3.26.4
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc
RepositoryURL: oci://mindthegap.{{ .Release.Namespace }}.svc/charts
kind: ConfigMap
metadata:
creationTimestamp: null
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Copyright 2023 D2iQ, Inc. All rights reserved.
# Copyright 2024 Nutanix. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

# This file contains the manifests to run a mindthegap deployment which contains helm charts for our addons.
# The pod is built via goreleaser with configuration from hack/addons.
#
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
Expand All @@ -12,12 +14,12 @@ spec:
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: mindthegap-example-tls
name: mindthegap-tls
namespace: {{ .Release.Namespace }}
spec:
dnsNames:
- mindthegap.default.svc
- mindthegap.default.svc.cluster.local
- mindthegap.{{ .Release.Namespace }}.svc
- mindthegap.{{ .Release.Namespace }}.svc.cluster.local
issuerRef:
name: mindthegap-selfsigned
kind: Issuer
Expand Down
Loading
Loading