Skip to content

Commit 9c35586

Browse files
authored
update kotskinds to add network config (#232)
1 parent beb18c4 commit 9c35586

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

charts/embedded-cluster-operator/charts/crds/templates/resources.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ spec:
484484
description: |-
485485
ConfigSecret holds a secret name and namespace. If this is set it means that
486486
the Config for this Installation object must be read from there. This option
487-
superseeds (overrides) the Config field.
487+
supersedes (overrides) the Config field.
488488
properties:
489489
name:
490490
type: string
@@ -511,6 +511,16 @@ spec:
511511
metricsBaseURL:
512512
description: MetricsBaseURL holds the base URL for the metrics server.
513513
type: string
514+
network:
515+
description: Network holds the network configuration.
516+
properties:
517+
nodePortRange:
518+
type: string
519+
podCIDR:
520+
type: string
521+
serviceCIDR:
522+
type: string
523+
type: object
514524
proxy:
515525
description: Proxy holds the proxy configuration.
516526
properties:

config/crd/bases/embeddedcluster.replicated.com_installations.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ spec:
271271
description: |-
272272
ConfigSecret holds a secret name and namespace. If this is set it means that
273273
the Config for this Installation object must be read from there. This option
274-
superseeds (overrides) the Config field.
274+
supersedes (overrides) the Config field.
275275
properties:
276276
name:
277277
type: string
@@ -300,6 +300,16 @@ spec:
300300
metricsBaseURL:
301301
description: MetricsBaseURL holds the base URL for the metrics server.
302302
type: string
303+
network:
304+
description: Network holds the network configuration.
305+
properties:
306+
nodePortRange:
307+
type: string
308+
podCIDR:
309+
type: string
310+
serviceCIDR:
311+
type: string
312+
type: object
303313
proxy:
304314
description: Proxy holds the proxy configuration.
305315
properties:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/ohler55/ojg v1.22.0
1717
github.com/onsi/ginkgo/v2 v2.19.0
1818
github.com/onsi/gomega v1.33.1
19-
github.com/replicatedhq/embedded-cluster-kinds v1.3.10
19+
github.com/replicatedhq/embedded-cluster-kinds v1.3.11
2020
github.com/stretchr/testify v1.9.0
2121
go.uber.org/multierr v1.11.0
2222
gopkg.in/yaml.v2 v2.4.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ github.com/prometheus/common v0.45.0 h1:2BGz0eBc2hdMDLnO/8n0jeB3oPrt2D08CekT0lne
172172
github.com/prometheus/common v0.45.0/go.mod h1:YJmSTw9BoKxJplESWWxlbyttQR4uaEcGyv9MZjVOJsY=
173173
github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
174174
github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
175-
github.com/replicatedhq/embedded-cluster-kinds v1.3.10 h1:nANfyym6NGwkdY9jVhRR4zClQT2YBskIjs60g+VfFfs=
176-
github.com/replicatedhq/embedded-cluster-kinds v1.3.10/go.mod h1:AwopUvvGcaWO4mn9DkbPj5RnLuOy756CNLrcaAlmjMo=
175+
github.com/replicatedhq/embedded-cluster-kinds v1.3.11 h1:mYQcqd97xWTLTQnfp0mdufVoj9py3ldOUj/chk4gb+4=
176+
github.com/replicatedhq/embedded-cluster-kinds v1.3.11/go.mod h1:AwopUvvGcaWO4mn9DkbPj5RnLuOy756CNLrcaAlmjMo=
177177
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
178178
github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA=
179179
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=

0 commit comments

Comments
 (0)