Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
machine-api-operator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
paas-tools
okd4-deployment
machine-api-operator
Commits
75acff35
Unverified
Commit
75acff35
authored
6 years ago
by
OpenShift Merge Robot
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
machines/aws/machine-set.yaml
+14
-1
14 additions, 1 deletion
machines/aws/machine-set.yaml
pkg/render/config.go
+8
-6
8 additions, 6 deletions
pkg/render/config.go
pkg/render/render_test.go
+22
-7
22 additions, 7 deletions
pkg/render/render_test.go
with
44 additions
and
14 deletions
machines/aws/machine-set.yaml
+
14
−
1
View file @
75acff35
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
pkg/render/config.go
+
8
−
6
View file @
75acff35
...
@@ -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"`
}
}
This diff is collapsed.
Click to expand it.
pkg/render/render_test.go
+
22
−
7
View file @
75acff35
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment