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-06-18 14:18:50 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 14:18:50 +0300
commit8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781 (patch)
treea77e7fe7a93de11213032ed4ab1f33a3db51b738 /spec/frontend/clusters/components/__snapshots__
parent00b35af3db1abfe813a778f643dad221aad51fca (diff)
Add latest changes from gitlab-org/gitlab@13-1-stable-ee
Diffstat (limited to 'spec/frontend/clusters/components/__snapshots__')
-rw-r--r--spec/frontend/clusters/components/__snapshots__/applications_spec.js.snap89
1 files changed, 89 insertions, 0 deletions
diff --git a/spec/frontend/clusters/components/__snapshots__/applications_spec.js.snap b/spec/frontend/clusters/components/__snapshots__/applications_spec.js.snap
new file mode 100644
index 00000000000..92237590550
--- /dev/null
+++ b/spec/frontend/clusters/components/__snapshots__/applications_spec.js.snap
@@ -0,0 +1,89 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Applications Cert-Manager application shows the correct description 1`] = `
+<p
+ data-testid="certManagerDescription"
+>
+ Cert-Manager is a native Kubernetes certificate management controller that helps with issuing certificates. Installing Cert-Manager on your cluster will issue a certificate by
+ <a
+ class="gl-link"
+ href="https://letsencrypt.org/"
+ rel="noopener noreferrer"
+ target="_blank"
+ >
+ Let's Encrypt
+ </a>
+ and ensure that certificates are valid and up-to-date.
+</p>
+`;
+
+exports[`Applications Crossplane application shows the correct description 1`] = `
+<p
+ data-testid="crossplaneDescription"
+>
+ Crossplane enables declarative provisioning of managed services from your cloud of choice using
+ <code>
+ kubectl
+ </code>
+ or
+ <a
+ class="gl-link"
+ href="https://docs.gitlab.com/ee/user/clusters/applications.html#crossplane"
+ rel="noopener noreferrer"
+ target="_blank"
+ >
+ GitLab Integration
+ </a>
+ . Crossplane runs inside your Kubernetes cluster and supports secure connectivity and secrets management between app containers and the cloud services they depend on.
+</p>
+`;
+
+exports[`Applications Ingress application shows the correct warning message 1`] = `
+<strong
+ data-testid="ingressCostWarning"
+>
+ Installing Ingress may incur additional costs. Learn more about
+ <a
+ class="gl-link"
+ href="https://cloud.google.com/compute/pricing#lb"
+ rel="noopener noreferrer"
+ target="_blank"
+ >
+ pricing
+ </a>
+ .
+</strong>
+`;
+
+exports[`Applications Knative application shows the correct description 1`] = `
+<span
+ data-testid="installedVia"
+>
+ installed via
+ <a
+ class="gl-link"
+ href=""
+ rel="noopener"
+ target="_blank"
+ >
+ Cloud Run
+ </a>
+</span>
+`;
+
+exports[`Applications Prometheus application shows the correct description 1`] = `
+<span
+ data-testid="prometheusDescription"
+>
+ Prometheus is an open-source monitoring system with
+ <a
+ class="gl-link"
+ href="https://docs.gitlab.com/ce/user/project/integrations/prometheus.html"
+ rel="noopener noreferrer"
+ target="_blank"
+ >
+ GitLab Integration
+ </a>
+ to monitor deployed applications.
+</span>
+`;