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:
parent
9885694df6
commit
b468070945
49 changed files with 877 additions and 388 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue