mirror of https://github.com/portainer/portainer
fix(helm): Remove duplicate helm instructions in CE [BE-11670] (#482)
parent
2bccb3589e
commit
438b1f9815
|
@ -31,37 +31,31 @@
|
||||||
>Select the Helm chart to use. Bring further Helm charts into your selection list via
|
>Select the Helm chart to use. Bring further Helm charts into your selection list via
|
||||||
<a ui-sref="portainer.account({'#': 'helm-repositories'})">User settings - Helm repositories</a>.</div
|
<a ui-sref="portainer.account({'#': 'helm-repositories'})">User settings - Helm repositories</a>.</div
|
||||||
>
|
>
|
||||||
<div class="w-full">
|
<div class="relative flex w-fit gap-1 rounded-lg bg-gray-modern-3 p-4 text-sm th-highcontrast:bg-legacy-grey-3 th-dark:bg-legacy-grey-3 mt-2">
|
||||||
<div class="small text-muted mb-2"
|
<div class="mt-0.5 shrink-0">
|
||||||
>Select the Helm chart to use. Bring further Helm charts into your selection list via
|
<svg
|
||||||
<a ui-sref="portainer.account({'#': 'helm-repositories'})">User settings - Helm repositories</a>.</div
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
>
|
width="24"
|
||||||
<div class="relative flex w-fit gap-1 rounded-lg bg-gray-modern-3 p-4 text-sm th-highcontrast:bg-legacy-grey-3 th-dark:bg-legacy-grey-3 mt-2">
|
height="24"
|
||||||
<div class="mt-0.5 shrink-0">
|
viewBox="0 0 24 24"
|
||||||
<svg
|
fill="none"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
stroke="currentColor"
|
||||||
width="24"
|
stroke-width="2"
|
||||||
height="24"
|
stroke-linecap="round"
|
||||||
viewBox="0 0 24 24"
|
stroke-linejoin="round"
|
||||||
fill="none"
|
class="lucide lucide-lightbulb h-4 text-warning-7 th-highcontrast:text-warning-6 th-dark:text-warning-6"
|
||||||
stroke="currentColor"
|
>
|
||||||
stroke-width="2"
|
<path d="M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5"></path>
|
||||||
stroke-linecap="round"
|
<path d="M9 18h6"></path>
|
||||||
stroke-linejoin="round"
|
<path d="M10 22h4"></path>
|
||||||
class="lucide lucide-lightbulb h-4 text-warning-7 th-highcontrast:text-warning-6 th-dark:text-warning-6"
|
</svg>
|
||||||
>
|
</div>
|
||||||
<path d="M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5"></path>
|
<div>
|
||||||
<path d="M9 18h6"></path>
|
<p class="align-middle text-[0.9em] font-medium pr-10 mb-2">Disclaimer</p>
|
||||||
<path d="M10 22h4"></path>
|
<div class="small">
|
||||||
</svg>
|
At present Portainer does not support OCI format Helm charts. Support for OCI charts will be available in a future release.<br />
|
||||||
</div>
|
If you would like to provide feedback on OCI support or get access to early releases to test this functionality,
|
||||||
<div>
|
<a href="https://bit.ly/3WVkayl" target="_blank" rel="noopener noreferrer">please get in touch</a>.
|
||||||
<p class="align-middle text-[0.9em] font-medium pr-10 mb-2">Disclaimer</p>
|
|
||||||
<div class="small">
|
|
||||||
At present Portainer does not support OCI format Helm charts. Support for OCI charts will be available in a future release.<br />
|
|
||||||
If you would like to provide feedback on OCI support or get access to early releases to test this functionality,
|
|
||||||
<a href="https://bit.ly/3WVkayl" target="_blank" rel="noopener noreferrer">please get in touch</a>.
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -75,7 +69,7 @@
|
||||||
on-select="($ctrl.selectAction)"
|
on-select="($ctrl.selectAction)"
|
||||||
>
|
>
|
||||||
</helm-templates-list-item>
|
</helm-templates-list-item>
|
||||||
<div ng-if="!allCharts.length" class="text-muted small mt-4"> No Helm charts found </div>
|
<div ng-if="!$ctrl.loading && !allCharts.length && $ctrl.charts.length !== 0" class="text-muted small mt-4"> No Helm charts found </div>
|
||||||
<div ng-if="$ctrl.loading" class="text-muted text-center">
|
<div ng-if="$ctrl.loading" class="text-muted text-center">
|
||||||
Loading...
|
Loading...
|
||||||
<div class="text-muted text-center"> Initial download of Helm charts can take a few minutes </div>
|
<div class="text-muted text-center"> Initial download of Helm charts can take a few minutes </div>
|
||||||
|
|
Loading…
Reference in New Issue