Skip to content
Open
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 @@ -33,9 +33,9 @@ import { WizardStep } from './types';

// Only OCI refs use tag (chart:version); HTTP/HTTPS chart URLs (.tgz) must not have :version appended
const getFullChartURL = (chartURL: string, chartVersion: string): string => {
if (!chartVersion) return chartURL;
const isOCI = chartURL.startsWith('oci://');
return isOCI ? `${chartURL}:${chartVersion}` : chartURL;
if (!chartVersion || !/^oci:\/\//i.test(chartURL)) return chartURL;
const base = chartURL.replace(/:[^/]+$/, '');
return `${base}:${chartVersion}`;
};

const HelmURLChartInstallPage: FunctionComponent = () => {
Expand Down