-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Allow past year in license header (#209)
- Loading branch information
1 parent
ede08b8
commit dc47fdf
Showing
4 changed files
with
45 additions
and
0 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
36 changes: 36 additions & 0 deletions
36
charts/capi-runtime-extensions/templates/cni/calico/manifests/aws/installation.yaml
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,36 @@ | ||
# Copyright 2023 D2iQ, Inc. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
{{- if .Values.hooks.CalicoCNI.defaultInstallationConfigMaps.AWSCluster.create }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: '{{ .Values.hooks.CalicoCNI.defaultInstallationConfigMaps.AWSCluster.configMap.name }}' | ||
data: | ||
calico-installation: | | ||
{{- if .Values.hooks.CalicoCNI.defaultInstallationConfigMaps.AWSCluster.configMap.content -}} | ||
{{ .Values.hooks.CalicoCNI.defaultInstallationConfigMaps.AWSCluster.configMap.content | nindent 4}} | ||
{{- else -}} | ||
# This section includes base Calico installation configuration. | ||
# For more information, see: https://docs.projectcalico.org/reference/installation/api | ||
apiVersion: operator.tigera.io/v1 | ||
kind: Installation | ||
metadata: | ||
name: default | ||
spec: | ||
cni: | ||
type: Calico | ||
# Configures Calico networking. | ||
calicoNetwork: | ||
# Note: The ipPools section cannot be modified post-install. | ||
ipPools: | ||
- blockSize: 26 | ||
cidr: {{ .Values.hooks.CalicoCNI.defaultPodSubnet }} | ||
encapsulation: IPIP | ||
natOutgoing: Enabled | ||
nodeSelector: all() | ||
bgp: Enabled | ||
nodeMetricsPort: 9091 | ||
typhaMetricsPort: 9093 | ||
{{- end -}} | ||
{{- end -}} |
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