1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

feature(helm): move helm charts inside advance deployments (create from manifest) [EE-5999] (#10395)

This commit is contained in:
Prabhat Khera 2023-10-09 11:20:44 +13:00 committed by GitHub
parent 9885694df6
commit b468070945
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
49 changed files with 877 additions and 388 deletions

View file

@ -8,6 +8,7 @@ import { AnnotationsBeTeaser } from '@/react/kubernetes/annotations/AnnotationsB
import { withFormValidation } from '@/react-tools/withFormValidation';
import { GroupAssociationTable } from '@/react/portainer/environments/environment-groups/components/GroupAssociationTable';
import { AssociatedEnvironmentsSelector } from '@/react/portainer/environments/environment-groups/components/AssociatedEnvironmentsSelector';
import { HelmRepositoryDatatable } from '@/react/portainer/account/AccountView/HelmRepositoryDatatable';
import {
EnvironmentVariablesFieldset,
@ -137,6 +138,7 @@ export const ngModule = angular
'isLoading',
'isRefetching',
'dataCy',
'iconClass',
])
)
.component(
@ -150,7 +152,7 @@ export const ngModule = angular
'className',
])
)
.component('badgeIcon', r2a(BadgeIcon, ['icon', 'size']))
.component('badgeIcon', r2a(BadgeIcon, ['icon', 'size', 'iconClass']))
.component(
'teamsSelector',
r2a(TeamsSelector, [
@ -223,6 +225,13 @@ export const ngModule = angular
.component(
'associatedEndpointsSelector',
r2a(withReactQuery(AssociatedEnvironmentsSelector), ['onChange', 'value'])
)
.component(
'helmRepositoryDatatable',
r2a(
withUIRouter(withReactQuery(withCurrentUser(HelmRepositoryDatatable))),
[]
)
);
export const componentsModule = ngModule.name;