-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: monthly updates * fix: remove deprecated resolve_conflicts and replace with new attributes for aws_eks_addon resource * feat: update csi driver to 1.20.0 * feat: update k8s control plane to 1.27 and node pool to 1.27 * terraform-docs: automated action --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
82a2ff4
commit c55625c
Showing
11 changed files
with
85 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
installation: | ||
enabled: true | ||
kubernetesProvider: EKS | ||
typhaMetricsPort: 9093 | ||
cni: | ||
type: Calico | ||
calicoNetwork: | ||
bgp: Disabled | ||
ipPools: | ||
- cidr: 172.16.0.0/16 | ||
encapsulation: VXLAN | ||
|
||
apiServer: | ||
enabled: true | ||
|
||
# Resource requests and limits for the tigera/operator pod. | ||
resources: {} | ||
|
||
# Tolerations for the tigera/operator pod. | ||
tolerations: | ||
- effect: NoExecute | ||
operator: Exists | ||
- effect: NoSchedule | ||
operator: Exists | ||
|
||
# NodeSelector for the tigera/operator pod. | ||
nodeSelector: | ||
kubernetes.io/os: linux | ||
|
||
# Custom annotations for the tigera/operator pod. | ||
podAnnotations: {} | ||
|
||
# Custom labels for the tigera/operator pod. | ||
podLabels: {} | ||
|
||
# Image and registry configuration for the tigera/operator pod. | ||
tigeraOperator: | ||
image: tigera/operator | ||
version: v1.30.4 | ||
registry: quay.io | ||
calicoctl: | ||
image: docker.io/calico/ctl | ||
tag: v3.26.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
terraform { | ||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
source = "hashicorp/aws" | ||
} | ||
} | ||
} |