Skip to content

Commit 301264f

Browse files
authoredJan 28, 2025··
CHAOSPLT-571: Allow for extra ip ranges for GCP cloud disruption (#952)
* CHAOSPLT-571: Allow for extra ip ranges for GCP cloud disruption
1 parent 39f0c69 commit 301264f

File tree

6 files changed

+38
-3
lines changed

6 files changed

+38
-3
lines changed
 

‎chart/templates/configmap.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ data:
5050
gcp:
5151
enabled: {{ .Values.controller.cloudProviders.gcp.enabled }}
5252
ipRangesURL: {{ .Values.controller.cloudProviders.gcp.ipRangesURL }}
53+
{{- if .Values.controller.cloudProviders.gcp.extraIpRanges }}
54+
extraIpRanges:
55+
{{- range $index, $val := .Values.controller.cloudProviders.gcp.extraIpRanges }}
56+
- {{ $val | quote }}
57+
{{- end }}
58+
{{- end}}
5359
datadog:
5460
enabled: {{ .Values.controller.cloudProviders.datadog.enabled }}
5561
ipRangesURL: {{ .Values.controller.cloudProviders.datadog.ipRangesURL }}

‎chart/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ controller:
6161
gcp: # gcp cloud provider config
6262
enabled: true # enable the provider
6363
ipRangesURL: "https://www.gstatic.com/ipranges/goog.json" # URL to the IP ranges file (format must be the expected one, defaults is the public file provided by the cloud provider)
64+
extraIpRanges:
65+
- "Google;199.36.153.8/30;199.36.153.4/30" # private.googleapis.com;restricted.googleapis.com
6466
datadog: # datadog cloud provider config
6567
enabled: true # enable the provider
6668
ipRangesURL: "https://ip-ranges.datadoghq.com/" # URL to the IP ranges file (format must be the expected one, defaults is the public file provided by the cloud provider)

‎cloudservice/manager.go

+13
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ func New(log *zap.SugaredLogger, config types.CloudProviderConfigs, httpClientMo
109109
provider.CloudProviderIPRangeManager = gcp.New()
110110
provider.Conf.Enabled = config.GCP.Enabled
111111
provider.Conf.IPRangesURL = config.GCP.IPRangesURL
112+
provider.Conf.ExtraIPRanges = config.GCP.ExtraIPRanges
112113
case types.CloudProviderDatadog:
113114
provider.CloudProviderIPRangeManager = datadog.New()
114115
provider.Conf.Enabled = config.Datadog.Enabled
@@ -253,6 +254,18 @@ func (s *cloudServicesProvidersManager) pullIPRangesPerCloudProvider(cloudProvid
253254

254255
provider.IPRangeInfo, err = provider.CloudProviderIPRangeManager.ConvertToGenericIPRanges(unparsedIPRange)
255256

257+
for _, ipRangeList := range provider.Conf.ExtraIPRanges {
258+
// Viper "normalizes" all map keys by casting them all to lower case: https://github.com/spf13/viper/issues/373
259+
// Because the services for each cloud provider use different case methods, e.g., "Google" vs "S3" vs "synthetics",
260+
// there's no easy way to undo this lowercasing. So we've stored the extra ranges in the following syntax:
261+
// "service;iprange;iprange;...;iprange". We split by ';' once to find the service, then split by ';' again to find
262+
// all extra ranges
263+
serviceAndSplitIPRange := strings.SplitN(ipRangeList, ";", 2)
264+
service := serviceAndSplitIPRange[0]
265+
splitIPRange := strings.Split(serviceAndSplitIPRange[1], ";")
266+
provider.IPRangeInfo.IPRanges[service] = append(provider.IPRangeInfo.IPRanges[service], splitIPRange...)
267+
}
268+
256269
return err
257270
}
258271

‎cloudservice/types/types.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ type CloudProviderIPRangeInfo struct {
2828

2929
// CloudProviderConfig Single configuration for any cloud provider
3030
type CloudProviderConfig struct {
31-
Enabled bool `json:"enabled" yaml:"enabled"`
32-
IPRangesURL string `json:"ipRangesURL" yaml:"ipRangesURL"`
31+
Enabled bool `json:"enabled" yaml:"enabled"`
32+
IPRangesURL string `json:"ipRangesURL" yaml:"ipRangesURL"`
33+
ExtraIPRanges []string `json:"extraIpRanges" yaml:"extraIpRanges"`
3334
}
3435

3536
// CloudProviderConfigs all cloud provider configurations for the manager

‎config/config.go

+6
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,12 @@ func New(client corev1client.ConfigMapInterface, logger *zap.SugaredLogger, osAr
509509
return cfg, err
510510
}
511511

512+
mainFS.StringSliceVar(&cfg.Controller.CloudProviders.GCP.ExtraIPRanges, "cloud-providers-gcp-extraipranges", []string{}, "Any additional ranges for GCP")
513+
514+
if err := viper.BindPFlag("controller.cloudProviders.gcp.ipRanges", mainFS.Lookup("cloud-providers-gcp-extraipranges")); err != nil {
515+
return cfg, err
516+
}
517+
512518
mainFS.BoolVar(&cfg.Controller.CloudProviders.Datadog.Enabled, "cloud-providers-datadog-enabled", true, "Enable Datadog cloud provider disruptions (defaults to true, is overridden by --cloud-providers-disable-all)")
513519

514520
if err := viper.BindPFlag("controller.cloudProviders.datadog.enabled", mainFS.Lookup("cloud-providers-datadog-enabled")); err != nil {

‎docs/network_disruption/cloud-managed-services.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,17 @@ We are using the URL **https://ip-ranges.amazonaws.com/ip-ranges.json** to pull
7979

8080
Available service is `Google`.
8181

82-
Google does not indicates which ip ranges correspond to which service in its ip ranges files.
82+
Google does not indicate which ip ranges correspond to which service in its ip ranges files.
8383

8484
We are using the URL **https://www.gstatic.com/ipranges/goog.json**. This file is the generic Google ip ranges file. We could not use the Google Cloud specific file due to some ip ranges from the apis being in the first file (goog.json). ([More info here](https://support.google.com/a/answer/10026322?hl=en))
8585

86+
We'd like to include the private ranges alongside the public ranges. The private ranges don't appear to be published in a static json file, but are listed in documentation in various places:
87+
https://cloud.google.com/vpc/docs/configure-private-google-access#config-options
88+
https://cloud.google.com/vpc/docs/subnets#restricted-ranges
89+
90+
So we configure this directly in the configmap under `controller.cloudProviders.gcp.extraIpRanges`, which takes a list of strings,
91+
of the form `"service;iprange;iprange;...;iprange`. We aren't able to use a map because of how viper normalizes map keys.
92+
8693
### Datadog
8794

8895
Available services are:

0 commit comments

Comments
 (0)
Please sign in to comment.