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

state.js « store « eks_cluster « create_cluster « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf74213bdcedc27d9c53f7956212bbe5aead4afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { KUBERNETES_VERSIONS } from '../constants';

export default () => ({
  isValidatingCredentials: false,
  validCredentials: false,

  clusterName: '',
  environmentScope: '*',
  kubernetesVersion: [KUBERNETES_VERSIONS].value,
  selectedRegion: '',
  selectedRole: '',
  selectedKeyPair: '',
  selectedVpc: '',
  selectedSubnet: '',
  selectedSecurityGroup: '',

  gitlabManagedCluster: true,
});