mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
15 lines
270 B
TypeScript
15 lines
270 B
TypeScript
import { ChartOpts } from '@pulumi/kubernetes/helm/v3';
|
|
|
|
export function helmChart(
|
|
repo: string,
|
|
chart: string,
|
|
version: string,
|
|
): Pick<ChartOpts, 'chart' | 'version' | 'fetchOpts'> {
|
|
return {
|
|
chart,
|
|
version,
|
|
fetchOpts: {
|
|
repo,
|
|
},
|
|
};
|
|
}
|