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

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