mirror of https://github.com/portainer/portainer
feat(k8s/application): add the ability to redeploy external application (#4704)
* feat(k8s/application): add the ability to redeploy external application * feat(k8s/application): remove extra whitespace for pod applicationpull/4414/merge
parent
c72d07441d
commit
59faec45ce
|
@ -190,14 +190,33 @@
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<rd-widget>
|
<rd-widget>
|
||||||
<rd-widget-body>
|
<rd-widget-body>
|
||||||
<div ng-if="!ctrl.isExternalApplication() && !ctrl.isSystemNamespace()" style="margin-bottom: 15px;">
|
<div ng-if="!ctrl.isSystemNamespace()">
|
||||||
<button type="button" class="btn btn-sm btn-primary" ui-sref="kubernetes.applications.application.edit" style="margin-left: 0;">
|
<button
|
||||||
|
ng-if="!ctrl.isExternalApplication()"
|
||||||
|
type="button"
|
||||||
|
class="btn btn-sm btn-primary"
|
||||||
|
ui-sref="kubernetes.applications.application.edit"
|
||||||
|
style="margin-left: 0; margin-bottom: 15px;"
|
||||||
|
>
|
||||||
<i class="fa fa-file-code space-right" aria-hidden="true"></i>Edit this application
|
<i class="fa fa-file-code space-right" aria-hidden="true"></i>Edit this application
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm btn-primary" style="margin-left: 0;" ng-click="ctrl.redeployApplication()">
|
<button
|
||||||
|
ng-if="ctrl.application.ApplicationType !== ctrl.KubernetesApplicationTypes.POD"
|
||||||
|
type="button"
|
||||||
|
class="btn btn-sm btn-primary"
|
||||||
|
style="margin-left: 0; margin-bottom: 15px;"
|
||||||
|
ng-click="ctrl.redeployApplication()"
|
||||||
|
>
|
||||||
<i class="fa fa-redo space-right" aria-hidden="true"></i>Redeploy
|
<i class="fa fa-redo space-right" aria-hidden="true"></i>Redeploy
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-sm btn-primary" style="margin-left: 0;" ng-click="ctrl.rollbackApplication()" ng-disabled="ctrl.application.Revisions.length < 2">
|
<button
|
||||||
|
ng-if="!ctrl.isExternalApplication()"
|
||||||
|
type="button"
|
||||||
|
class="btn btn-sm btn-primary"
|
||||||
|
style="margin-left: 0; margin-bottom: 15px;"
|
||||||
|
ng-click="ctrl.rollbackApplication()"
|
||||||
|
ng-disabled="ctrl.application.Revisions.length < 2"
|
||||||
|
>
|
||||||
<i class="fas fa-history space-right" aria-hidden="true"></i>Rollback to previous configuration
|
<i class="fas fa-history space-right" aria-hidden="true"></i>Rollback to previous configuration
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue