-
Notifications
You must be signed in to change notification settings - Fork 20
Conversation
docs/flatcar-linux/packet.md
Outdated
@@ -316,6 +316,7 @@ Lokomotive implements support for some [DNS providers](../dns/), if your provide | |||
| reservation_ids_default | Default hardware reservation ID for nodes not listed in the `reservation_ids` map. | "" | "next-available"| | |||
| certs_validity_period_hours | Validity of all the certificates in hours | 8760 | 17520 | | |||
| controller_clc_snippets [[1]](#clc-snippets-limitation) | Controller Container Linux Config snippets | [] | [example](../advanced/customization.md#usage) | | |||
| tags | Optional details to tag on Packet resources | `[]` | `["CreatedBy-DevOpsTeam"]` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest we use :
as a separator between the "key" and the "value" in Packet tags. The hyphen is less clear semantically IMO. Additionally, hyphens are much more likely to exist as part of either the key or the value, which would make it hard to know where the key ends and the value begins.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems like a duplicate of #170.
docs/flatcar-linux/aws.md
Outdated
@@ -223,7 +223,7 @@ Reference the DNS zone id with `"${aws_route53_zone.zone-for-clusters.zone_id}"` | |||
| service_cidr | CIDR IPv4 range to assign to Kubernetes services | "10.3.0.0/16" | "10.3.0.0/24" | | |||
| cluster_domain_suffix | FQDN suffix for Kubernetes services answered by coredns. | "cluster.local" | "k8s.example.com" | | |||
| certs_validity_period_hours | Validity of all the certificates in hours | 8760 | 17520 | | |||
| tags | Optional details to tag on AWS resources | `{}` | `{"CreatedBy" = "Devops team"}` | | |||
| tags | Optional details to tag on AWS resources | `{}` | `{"CreatedBy" = "DevOps team"}` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seem unrelated to this PR/commit.
#170 has been merged, so this PR needs to be rebased. |
On Packet, tags are a list of strings. On AWS, tags are a key-value map. There are some default tags: - ManagedBy = Lokomotive - CreatedBy = Unspecified and some suggestions: - ManagedBy = Lokomotive - CreatedBy = DevOpsTeam
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks OK.
On Packet, tags are a list of strings.
On AWS, tags are a key-value map.
There are some default tags:
and some suggestions:
Related: