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

constants.js « 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: 3ed0f050301ffd4af2654eb8de762c180828bd3a (plain)
1
2
3
4
5
6
7
8
9
export const DEFAULT_REGION = 'us-east-2';

export const KUBERNETES_VERSIONS = [
  { name: '1.16', value: '1.16' },
  { name: '1.17', value: '1.17' },
  { name: '1.18', value: '1.18' },
  { name: '1.19', value: '1.19' },
  { name: '1.20', value: '1.20', default: true },
];