Skip to content

Commit

Permalink
docs: remove stage of feature gates
Browse files Browse the repository at this point in the history
  • Loading branch information
belokobylskii.i committed Oct 15, 2024
1 parent 0c924ab commit 981c491
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/v1/cluster/requests_opts.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type CreateOpts struct {
Zonal *bool `json:"zonal,omitempty"`

// KubernetesOptions represents additional k8s options such as pod security policy,
// feature gates (Alpha stage only), admission controllers and audit logs.
// feature gates, admission controllers and audit logs.
KubernetesOptions *KubernetesOptions `json:"kubernetes_options,omitempty"`

// PrivateKubeAPI specifies if kube API should be available from the Internet or not.
Expand All @@ -71,6 +71,6 @@ type UpdateOpts struct {
EnablePatchVersionAutoUpgrade *bool `json:"enable_patch_version_auto_upgrade,omitempty"`

// KubernetesOptions represents additional k8s options such as pod security policy,
// feature gates (Alpha stage only), admission controllers and audit logs.
// feature gates, admission controllers and audit logs.
KubernetesOptions *KubernetesOptions `json:"kubernetes_options,omitempty"`
}
4 changes: 2 additions & 2 deletions pkg/v1/cluster/schemas.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ type View struct {
Zonal bool `json:"zonal"`

// KubernetesOptions represents additional k8s options such as pod security policy,
// feature gates (Alpha stage only), admission controllers and audit logs.
// feature gates, admission controllers and audit logs.
KubernetesOptions *KubernetesOptions `json:"kubernetes_options,omitempty"`

PrivateKubeAPI bool `json:"private_kube_api"`
Expand Down Expand Up @@ -152,7 +152,7 @@ func (result *View) UnmarshalJSON(b []byte) error {
}

// KubernetesOptions represents additional k8s options such as pod security policy,
// feature gates (Alpha stage only), admission controllers and audit logs.
// feature gates, admission controllers and audit logs.
type KubernetesOptions struct {
// EnablePodSecurityPolicy indicates if PodSecurityPolicy admission controller
// must be turned on/off.
Expand Down

0 comments on commit 981c491

Please sign in to comment.