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: 0f0db2090c102eaadafc5be93bcf7422724b6d08 (plain)
1
2
3
4
5
6
7
8
export const DEFAULT_REGION = 'us-east-2';

export const KUBERNETES_VERSIONS = [
  { name: '1.14', value: '1.14' },
  { name: '1.15', value: '1.15' },
  { name: '1.16', value: '1.16', default: true },
  { name: '1.17', value: '1.17' },
];