[argocd]
login via sso
how canscading
Argocd API Versioning
Kubernetes API Versions
Kubernetes uses API versions to manage changes and ensure backward compatibility. Each resource in Kubernetes is associated with a specific API version.API Group and Version Format:
API versions follow the format:
<api-group>/<version>
For core resources:
v1
For other resources:
apps/v1
,networking.k8s.io/v1
, etc.
Versioning Stages:
Alpha (e.g.,
v1alpha1
): Experimental, may be buggy, disabled by defaultBeta (e.g.,
v1beta1
): Well-tested, enabled by default, details may changeStable (e.g.,
v1
): Will be supported for many subsequent versions
Last updated
Was this helpful?