Skip to content

Commit

Permalink
Merge pull request #25 from rh-mobb/tag-networks
Browse files Browse the repository at this point in the history
tag subnets for ELBs
  • Loading branch information
paulczar authored Jan 8, 2024
2 parents fb5b7e2 + 6b78f26 commit a6d73ce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion environment/hcp/group_vars/all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ rosa_sts: true
# rosa_max_replicas: 6
rosa_hosted_cp: true
# uncomment to pin to a version
# rosa_version: 4.13.10
rosa_version: 4.14.6

rosa_region: us-east-1
rosa_vpc_cidr: "10.0.0.0/20"
rosa_compute_machine_type: m5.xlarge
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: rh_mobb
name: rosa
version: 2.2.1
version: 2.2.2
readme: README.md
authors:
- Paul Czarkowski <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions roles/vpc_create/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
cidr: "{{ item.cidr }}"
az: "{{ item.az }}"
purge_tags: false
resource_tags: "{{ item.resource_tags }}"
resource_tags: "{{ item.resource_tags | combine({'kubernetes.io/role/internal-elb': '1'}) }}" #
with_items: "{{ rosa_vpc_private_subnets }}"
register: _private_subnets

Expand All @@ -30,7 +30,7 @@
cidr: "{{ item.cidr }}"
az: "{{ item.az }}"
purge_tags: false
resource_tags: "{{ item.resource_tags }}"
resource_tags: "{{ item.resource_tags | combine({'kubernetes.io/role/elb': '1'}) }}"
with_items: "{{ rosa_vpc_public_subnets }}"
register: _public_subnets

Expand Down

0 comments on commit a6d73ce

Please sign in to comment.