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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-14 03:08:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-14 03:08:14 +0300
commit427c549b6396885fb60a687326b6cd62878e4ca3 (patch)
tree145713e2f6fdaf7499b0cb44010503e16b6248b9 /app/assets/javascripts/clusters
parent74a89b1221eaf780374bd1d4c5b2ee4a0f488908 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/clusters')
-rw-r--r--app/assets/javascripts/clusters/components/applications.vue40
-rw-r--r--app/assets/javascripts/clusters/stores/clusters_store.js8
2 files changed, 0 insertions, 48 deletions
diff --git a/app/assets/javascripts/clusters/components/applications.vue b/app/assets/javascripts/clusters/components/applications.vue
index af50ca7361d..b37e644b503 100644
--- a/app/assets/javascripts/clusters/components/applications.vue
+++ b/app/assets/javascripts/clusters/components/applications.vue
@@ -222,9 +222,6 @@ Crossplane runs inside your Kubernetes cluster and supports secure connectivity
elasticStackInstalled() {
return this.applications.elastic_stack.status === APPLICATION_STATUS.INSTALLED;
},
- elasticStackKibanaHostname() {
- return this.applications.elastic_stack.kibana_hostname;
- },
knative() {
return this.applications.knative;
},
@@ -681,9 +678,6 @@ Crossplane runs inside your Kubernetes cluster and supports secure connectivity
:uninstall-successful="applications.elastic_stack.uninstallSuccessful"
:uninstall-failed="applications.elastic_stack.uninstallFailed"
:disabled="!helmInstalled"
- :install-application-request-params="{
- kibana_hostname: applications.elastic_stack.kibana_hostname,
- }"
title-link="https://github.com/helm/charts/tree/master/stable/elastic-stack"
>
<div slot="description">
@@ -694,40 +688,6 @@ Crossplane runs inside your Kubernetes cluster and supports secure connectivity
)
}}
</p>
-
- <template v-if="ingressExternalEndpoint">
- <div class="form-group">
- <label for="elastic-stack-kibana-hostname">{{
- s__('ClusterIntegration|Kibana Hostname')
- }}</label>
-
- <div class="input-group">
- <input
- v-model="applications.elastic_stack.kibana_hostname"
- :readonly="elasticStackInstalled"
- type="text"
- class="form-control js-hostname"
- />
- <span class="input-group-btn">
- <clipboard-button
- :text="elasticStackKibanaHostname"
- :title="s__('ClusterIntegration|Copy Kibana Hostname')"
- class="js-clipboard-btn"
- />
- </span>
- </div>
-
- <p v-if="ingressInstalled" class="form-text text-muted">
- {{
- s__(`ClusterIntegration|Replace this with your own hostname if you want.
- If you do so, point hostname to Ingress IP Address from above.`)
- }}
- <a :href="ingressDnsHelpPath" target="_blank" rel="noopener noreferrer">
- {{ __('More information') }}
- </a>
- </p>
- </div>
- </template>
</div>
</application-row>
</div>
diff --git a/app/assets/javascripts/clusters/stores/clusters_store.js b/app/assets/javascripts/clusters/stores/clusters_store.js
index 9c8563e8f77..26456fb28db 100644
--- a/app/assets/javascripts/clusters/stores/clusters_store.js
+++ b/app/assets/javascripts/clusters/stores/clusters_store.js
@@ -5,7 +5,6 @@ import {
JUPYTER,
KNATIVE,
CERT_MANAGER,
- ELASTIC_STACK,
CROSSPLANE,
RUNNER,
APPLICATION_INSTALLED_STATUSES,
@@ -97,7 +96,6 @@ export default class ClusterStore {
elastic_stack: {
...applicationInitialState,
title: s__('ClusterIntegration|Elastic Stack'),
- kibana_hostname: null,
},
},
environments: [],
@@ -236,12 +234,6 @@ export default class ClusterStore {
} else if (appId === RUNNER) {
this.state.applications.runner.version = version;
this.state.applications.runner.updateAvailable = updateAvailable;
- } else if (appId === ELASTIC_STACK) {
- this.state.applications.elastic_stack.kibana_hostname = this.updateHostnameIfUnset(
- this.state.applications.elastic_stack.kibana_hostname,
- serverAppEntry.kibana_hostname,
- 'kibana',
- );
}
});
}