Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/clusters/forms/components/integration_form.vue')
-rw-r--r--app/assets/javascripts/clusters/forms/components/integration_form.vue17
1 files changed, 1 insertions, 16 deletions
diff --git a/app/assets/javascripts/clusters/forms/components/integration_form.vue b/app/assets/javascripts/clusters/forms/components/integration_form.vue
index a344f9578fd..3f61a1b18a7 100644
--- a/app/assets/javascripts/clusters/forms/components/integration_form.vue
+++ b/app/assets/javascripts/clusters/forms/components/integration_form.vue
@@ -41,17 +41,10 @@ export default {
toggleEnabled: true,
envScope: '*',
baseDomainField: '',
- externalIp: '',
};
},
computed: {
- ...mapState([
- 'enabled',
- 'editable',
- 'environmentScope',
- 'baseDomain',
- 'applicationIngressExternalIp',
- ]),
+ ...mapState(['enabled', 'editable', 'environmentScope', 'baseDomain']),
canSubmit() {
return (
this.enabled !== this.toggleEnabled ||
@@ -64,7 +57,6 @@ export default {
this.toggleEnabled = this.enabled;
this.envScope = this.environmentScope;
this.baseDomainField = this.baseDomain;
- this.externalIp = this.applicationIngressExternalIp;
},
};
</script>
@@ -135,13 +127,6 @@ export default {
<gl-link :href="autoDevopsHelpPath" target="_blank">{{ content }}</gl-link>
</template>
</gl-sprintf>
- <div v-if="applicationIngressExternalIp" class="js-ingress-domain-help-text inline">
- {{ s__('ClusterIntegration|Alternatively, ') }}
- <gl-sprintf :message="s__('ClusterIntegration|%{externalIp}.nip.io')">
- <template #externalIp>{{ externalIp }}</template>
- </gl-sprintf>
- {{ s__('ClusterIntegration|can be used instead of a custom domain. ') }}
- </div>
<gl-sprintf
class="inline"
:message="s__('ClusterIntegration|%{linkStart}More information%{linkEnd}')"