Skip to content
Snippets Groups Projects
Unverified Commit 75acff35 authored by OpenShift Merge Robot's avatar OpenShift Merge Robot Committed by GitHub
Browse files

Merge pull request #40 from enxebre/filters

add machineSet ami filters
parents 5c2e9ad1 90e24537
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,19 @@ spec: ...@@ -28,6 +28,19 @@ spec:
kind: AWSMachineProviderConfig kind: AWSMachineProviderConfig
ami: ami:
id: {{.AWS.Image}} id: {{.AWS.Image}}
filters:
- name: "name"
values:
- CoreOS-{{.AWS.ReleaseChannel}}-{{.AWS.ContainerLinuxVersion}}-*
- name: "architecture"
values:
- "x86_64"
- name: "virtualization-type"
values:
- "hvm"
- name: "owner-id"
values:
- "595879546273"
instanceType: m4.large instanceType: m4.large
placement: placement:
region: {{.AWS.Region}} region: {{.AWS.Region}}
...@@ -36,7 +49,7 @@ spec: ...@@ -36,7 +49,7 @@ spec:
filters: filters:
- name: "tag:Name" - name: "tag:Name"
values: values:
- {{.AWS.ClusterName}}-worker-{{.AWS.AvailabilityZone}} - {{.AWS.ClusterName}}-worker-*
publicIp: true publicIp: true
iamInstanceProfile: iamInstanceProfile:
id: {{.AWS.ClusterName}}-master-profile id: {{.AWS.ClusterName}}-master-profile
......
...@@ -26,10 +26,12 @@ type libvirtConfig struct { ...@@ -26,10 +26,12 @@ type libvirtConfig struct {
} }
type awsConfig struct { type awsConfig struct {
ClusterName string `json:"clusterName"` ClusterName string `json:"clusterName"`
ClusterID string `json:"clusterID"` ClusterID string `json:"clusterID"`
Region string `json:"region"` Region string `json:"region"`
AvailabilityZone string `json:"availabilityZone"` AvailabilityZone string `json:"availabilityZone"`
Image string `json:"image"` Image string `json:"image"`
Replicas string `json:"replicas"` ReleaseChannel string `json:"releaseChannel"`
ContainerLinuxVersion string `json:"containerLinuxVersion"`
Replicas string `json:"replicas"`
} }
...@@ -69,12 +69,14 @@ func TestMachineSetAWSManifest(t *testing.T) { ...@@ -69,12 +69,14 @@ func TestMachineSetAWSManifest(t *testing.T) {
config := OperatorConfig{ config := OperatorConfig{
Provider: "aws", Provider: "aws",
AWS: &awsConfig{ AWS: &awsConfig{
ClusterName: "TestClusterManifest-ClusterName", ClusterName: "TestClusterManifest-ClusterName",
ClusterID: "TestClusterManifest-ClusterID", ClusterID: "TestClusterManifest-ClusterID",
Region: "TestClusterManifest-Region", ReleaseChannel: "TestChannel",
AvailabilityZone: "TestClusterManifest-AvailabilityZone", ContainerLinuxVersion: "TestCLVersion",
Image: "TestClusterManifest-Image", Region: "TestClusterManifest-Region",
Replicas: "TestClusterManifest-Replicas", AvailabilityZone: "TestClusterManifest-AvailabilityZone",
Image: "TestClusterManifest-Image",
Replicas: "TestClusterManifest-Replicas",
}, },
} }
...@@ -109,6 +111,19 @@ spec: ...@@ -109,6 +111,19 @@ spec:
kind: AWSMachineProviderConfig kind: AWSMachineProviderConfig
ami: ami:
id: TestClusterManifest-Image id: TestClusterManifest-Image
filters:
- name: "name"
values:
- CoreOS-TestChannel-TestCLVersion-*
- name: "architecture"
values:
- "x86_64"
- name: "virtualization-type"
values:
- "hvm"
- name: "owner-id"
values:
- "595879546273"
instanceType: m4.large instanceType: m4.large
placement: placement:
region: TestClusterManifest-Region region: TestClusterManifest-Region
...@@ -117,7 +132,7 @@ spec: ...@@ -117,7 +132,7 @@ spec:
filters: filters:
- name: "tag:Name" - name: "tag:Name"
values: values:
- TestClusterManifest-ClusterName-worker-TestClusterManifest-AvailabilityZone - TestClusterManifest-ClusterName-worker-*
publicIp: true publicIp: true
iamInstanceProfile: iamInstanceProfile:
id: TestClusterManifest-ClusterName-master-profile id: TestClusterManifest-ClusterName-master-profile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment