Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions config/v1/0000_10_config-operator_01_infrastructure.crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,17 @@ spec:
type: object
properties:
apiServerInternalURI:
description: apiServerInternalURL is a valid URI with scheme(http/https),
address and port. apiServerInternalURL can be used by components
like kubelets, to contact the Kubernetes API server using the infrastructure
provider rather than Kubernetes networking.
description: apiServerInternalURL is a valid URI with scheme 'https',
address and optionally a port (defaulting to 443). apiServerInternalURL
can be used by components like kubelets, to contact the Kubernetes
API server using the infrastructure provider rather than Kubernetes
networking.
type: string
apiServerURL:
description: apiServerURL is a valid URI with scheme(http/https), address
and optionally a port (defaulting to 80 for http and 443 for https). apiServerURL
can be used by components like the web console to tell users where
to find the Kubernetes API.
description: apiServerURL is a valid URI with scheme 'https', address
and optionally a port (defaulting to 443). apiServerURL can be used
by components like the web console to tell users where to find the
Kubernetes API.
type: string
etcdDiscoveryDomain:
description: 'etcdDiscoveryDomain is the domain used to fetch the SRV
Expand Down
8 changes: 4 additions & 4 deletions config/v1/types_infrastructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ type InfrastructureStatus struct {
// For more info: https://github.com/etcd-io/etcd/blob/329be66e8b3f9e2e6af83c123ff89297e49ebd15/Documentation/op-guide/clustering.md#dns-discovery
EtcdDiscoveryDomain string `json:"etcdDiscoveryDomain"`

// apiServerURL is a valid URI with scheme(http/https), address and
// optionally a port (defaulting to 80 for http and 443 for https). apiServerURL can be used by components like the web console
// apiServerURL is a valid URI with scheme 'https', address and
// optionally a port (defaulting to 443). apiServerURL can be used by components like the web console
// to tell users where to find the Kubernetes API.
APIServerURL string `json:"apiServerURL"`

// apiServerInternalURL is a valid URI with scheme(http/https),
// address and port. apiServerInternalURL can be used by components
// apiServerInternalURL is a valid URI with scheme 'https',
// address and optionally a port (defaulting to 443). apiServerInternalURL can be used by components
// like kubelets, to contact the Kubernetes API server using the
// infrastructure provider rather than Kubernetes networking.
APIServerInternalURL string `json:"apiServerInternalURI"`
Expand Down
4 changes: 2 additions & 2 deletions config/v1/zz_generated.swagger_doc_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.