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

kubernetes_spec.rb « clusters « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f2c5e0461d34c441e45749f495a603c4c6f49f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

describe Clusters::Kubernetes do
  it { is_expected.to be_const_defined(:GITLAB_SERVICE_ACCOUNT_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_SERVICE_ACCOUNT_NAMESPACE) }
  it { is_expected.to be_const_defined(:GITLAB_ADMIN_TOKEN_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_CLUSTER_ROLE_BINDING_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_CLUSTER_ROLE_NAME) }
  it { is_expected.to be_const_defined(:PROJECT_CLUSTER_ROLE_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_KNATIVE_SERVING_ROLE_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_KNATIVE_SERVING_ROLE_BINDING_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_CROSSPLANE_DATABASE_ROLE_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_CROSSPLANE_DATABASE_ROLE_BINDING_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_KNATIVE_VERSION_ROLE_NAME) }
  it { is_expected.to be_const_defined(:GITLAB_KNATIVE_VERSION_ROLE_BINDING_NAME) }
  it { is_expected.to be_const_defined(:KNATIVE_SERVING_NAMESPACE) }
end