Merge pull request #3083 from superseb/k8s113

Add EKS regions and k8s 1.13
This commit is contained in:
Westly Wright 2019-06-25 16:58:07 -07:00 committed by GitHub
commit 228a111479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ import {
import { Promise, resolve } from 'rsvp';
import { equal } from '@ember/object/computed';
const REGIONS = ['us-east-1', 'us-west-2', 'us-east-2', 'eu-west-1', 'eu-central-1', 'eu-north-1', 'ap-northeast-1', 'ap-northeast-2', 'ap-southeast-1', 'ap-southeast-2'];
const REGIONS = ['us-east-2', 'us-east-1', 'us-west-2', 'ap-south-1', 'ap-northeast-1', 'ap-northeast-2', 'ap-southeast-1', 'ap-southeast-2', 'eu-central-1', 'eu-west-1', 'eu-west-2', 'eu-west-3', 'eu-north-1'];
const RANCHER_GROUP = 'rancher-nodes';
const VERSIONS = ['1.11', '1.10', '1.12'];
const VERSIONS = ['1.11', '1.10', '1.12', '1.13'];
export default Component.extend(ClusterDriver, {
layout,