diff --git a/master-local/_definitions.json b/master-local/_definitions.json
index eb1ac29a6e7fb171a6aadb93ba827225fc53df58..6e1354f8c017e35fa4de4523eacca04ec0d1c551 100644
--- a/master-local/_definitions.json
+++ b/master-local/_definitions.json
@@ -5599,111 +5599,6 @@
       ],
       "type": "object"
     },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidate": {
-      "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidate"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
-          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        },
-        "spec": {
-          "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
-          "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
-        }
-      },
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidate",
-          "version": "v1beta1"
-        }
-      ]
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateList": {
-      "description": "LeaseCandidateList is a list of Lease objects.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "items": {
-          "description": "items is a list of schema objects.",
-          "items": {
-            "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-          },
-          "type": "array"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidateList"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
-          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        }
-      },
-      "required": [
-        "items"
-      ],
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidateList",
-          "version": "v1beta1"
-        }
-      ]
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateSpec": {
-      "description": "LeaseCandidateSpec is a specification of a Lease.",
-      "properties": {
-        "binaryVersion": {
-          "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-          "type": "string"
-        },
-        "emulationVersion": {
-          "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-          "type": "string"
-        },
-        "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-          "type": "string"
-        },
-        "pingTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "PingTime is the last time that the server has requested the LeaseCandidate to renew. It is only done during leader election to check if any LeaseCandidates have become ineligible. When PingTime is updated, the LeaseCandidate will respond by updating RenewTime."
-        },
-        "renewTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "RenewTime is the time that the LeaseCandidate was last updated. Any time a Lease needs to do leader election, the PingTime field is updated to signal to the LeaseCandidate that they should update the RenewTime. Old LeaseCandidate objects are also garbage collected if it has been hours since the last renew. The PingTime field is updated regularly to prevent garbage collection for still active LeaseCandidates."
-        },
-        "strategy": {
-          "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-          "type": "string"
-        }
-      },
-      "required": [
-        "leaseName",
-        "binaryVersion",
-        "strategy"
-      ],
-      "type": "object"
-    },
     "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
       "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
       "properties": {
diff --git a/master-local/all.json b/master-local/all.json
index 3bc8ab55184b1f33fa54be8e3786f8d9305203c0..28bda13e7f5a46d1481a5d997e9c1af425bc55f1 100644
--- a/master-local/all.json
+++ b/master-local/all.json
@@ -552,15 +552,6 @@
     {
       "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidateSpec"
     },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-    },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateList"
-    },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec"
-    },
     {
       "$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource"
     },
diff --git a/master-local/leasecandidate-coordination-v1beta1.json b/master-local/leasecandidate-coordination-v1beta1.json
deleted file mode 100644
index 81707093406a79a833f6c9782e1f3b6b4ac9c50f..0000000000000000000000000000000000000000
--- a/master-local/leasecandidate-coordination-v1beta1.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-  "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidate"
-      ]
-    },
-    "metadata": {
-      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
-      "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-    },
-    "spec": {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
-      "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
-    }
-  },
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidate",
-      "version": "v1beta1"
-    }
-  ],
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-local/leasecandidate.json b/master-local/leasecandidate.json
index 9c7120cad13e930438aac9f86466fc32d66f84cf..f547537c4b91ce9e1b3a1d871320226ba479d4c4 100644
--- a/master-local/leasecandidate.json
+++ b/master-local/leasecandidate.json
@@ -23,7 +23,7 @@
       "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
     },
     "spec": {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
+      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidateSpec",
       "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
     }
   },
@@ -32,7 +32,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidate",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "$schema": "http://json-schema.org/schema#"
diff --git a/master-local/leasecandidatelist-coordination-v1beta1.json b/master-local/leasecandidatelist-coordination-v1beta1.json
deleted file mode 100644
index d671cb61375f01c2d99f0f2df95703080f6bc60a..0000000000000000000000000000000000000000
--- a/master-local/leasecandidatelist-coordination-v1beta1.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
-  "description": "LeaseCandidateList is a list of Lease objects.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "items": {
-      "description": "items is a list of schema objects.",
-      "items": {
-        "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-      },
-      "type": [
-        "array",
-        "null"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidateList"
-      ]
-    },
-    "metadata": {
-      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
-      "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-    }
-  },
-  "required": [
-    "items"
-  ],
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidateList",
-      "version": "v1beta1"
-    }
-  ],
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-local/leasecandidatelist.json b/master-local/leasecandidatelist.json
index eb2f43de80f876b42bd838544d1cf8d53085fcda..1aa6bf3f416b24ece182deb7eb88d92d6bbd5ab7 100644
--- a/master-local/leasecandidatelist.json
+++ b/master-local/leasecandidatelist.json
@@ -11,7 +11,7 @@
     "items": {
       "description": "items is a list of schema objects.",
       "items": {
-        "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
+        "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidate"
       },
       "type": [
         "array",
@@ -41,7 +41,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidateList",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "$schema": "http://json-schema.org/schema#"
diff --git a/master-local/leasecandidatespec-coordination-v1beta1.json b/master-local/leasecandidatespec-coordination-v1beta1.json
deleted file mode 100644
index 43ba1cab843fe98125536e59023f365a29c9d0bd..0000000000000000000000000000000000000000
--- a/master-local/leasecandidatespec-coordination-v1beta1.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
-  "description": "LeaseCandidateSpec is a specification of a Lease.",
-  "properties": {
-    "binaryVersion": {
-      "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "emulationVersion": {
-      "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "pingTime": {
-      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-      "description": "PingTime is the last time that the server has requested the LeaseCandidate to renew. It is only done during leader election to check if any LeaseCandidates have become ineligible. When PingTime is updated, the LeaseCandidate will respond by updating RenewTime."
-    },
-    "renewTime": {
-      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-      "description": "RenewTime is the time that the LeaseCandidate was last updated. Any time a Lease needs to do leader election, the PingTime field is updated to signal to the LeaseCandidate that they should update the RenewTime. Old LeaseCandidate objects are also garbage collected if it has been hours since the last renew. The PingTime field is updated regularly to prevent garbage collection for still active LeaseCandidates."
-    },
-    "strategy": {
-      "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-      "type": [
-        "string",
-        "null"
-      ]
-    }
-  },
-  "required": [
-    "leaseName",
-    "binaryVersion",
-    "strategy"
-  ],
-  "type": "object",
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-local/leasecandidatespec.json b/master-local/leasecandidatespec.json
index 43ba1cab843fe98125536e59023f365a29c9d0bd..abb6741dfa51c971dc84d2cfd0a9d23dbde1a589 100644
--- a/master-local/leasecandidatespec.json
+++ b/master-local/leasecandidatespec.json
@@ -16,7 +16,7 @@
       ]
     },
     "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+      "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
       "type": [
         "string",
         "null"
diff --git a/master-standalone-strict/_definitions.json b/master-standalone-strict/_definitions.json
index b2acd00d35d3c720d59453cdf56130e213bd4ced..b9d77e766cafe9ebe9dd60e2441fb3969d6724b2 100644
--- a/master-standalone-strict/_definitions.json
+++ b/master-standalone-strict/_definitions.json
@@ -5782,114 +5782,6 @@
       "type": "object",
       "additionalProperties": false
     },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidate": {
-      "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidate"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
-          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        },
-        "spec": {
-          "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
-          "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
-        }
-      },
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidate",
-          "version": "v1beta1"
-        }
-      ],
-      "additionalProperties": false
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateList": {
-      "description": "LeaseCandidateList is a list of Lease objects.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "items": {
-          "description": "items is a list of schema objects.",
-          "items": {
-            "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-          },
-          "type": "array"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidateList"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
-          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        }
-      },
-      "required": [
-        "items"
-      ],
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidateList",
-          "version": "v1beta1"
-        }
-      ],
-      "additionalProperties": false
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateSpec": {
-      "description": "LeaseCandidateSpec is a specification of a Lease.",
-      "properties": {
-        "binaryVersion": {
-          "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-          "type": "string"
-        },
-        "emulationVersion": {
-          "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-          "type": "string"
-        },
-        "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-          "type": "string"
-        },
-        "pingTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "PingTime is the last time that the server has requested the LeaseCandidate to renew. It is only done during leader election to check if any LeaseCandidates have become ineligible. When PingTime is updated, the LeaseCandidate will respond by updating RenewTime."
-        },
-        "renewTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "RenewTime is the time that the LeaseCandidate was last updated. Any time a Lease needs to do leader election, the PingTime field is updated to signal to the LeaseCandidate that they should update the RenewTime. Old LeaseCandidate objects are also garbage collected if it has been hours since the last renew. The PingTime field is updated regularly to prevent garbage collection for still active LeaseCandidates."
-        },
-        "strategy": {
-          "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-          "type": "string"
-        }
-      },
-      "required": [
-        "leaseName",
-        "binaryVersion",
-        "strategy"
-      ],
-      "type": "object",
-      "additionalProperties": false
-    },
     "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
       "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
       "properties": {
diff --git a/master-standalone-strict/all.json b/master-standalone-strict/all.json
index 3bc8ab55184b1f33fa54be8e3786f8d9305203c0..28bda13e7f5a46d1481a5d997e9c1af425bc55f1 100644
--- a/master-standalone-strict/all.json
+++ b/master-standalone-strict/all.json
@@ -552,15 +552,6 @@
     {
       "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidateSpec"
     },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-    },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateList"
-    },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec"
-    },
     {
       "$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource"
     },
diff --git a/master-standalone-strict/leasecandidate-coordination-v1beta1.json b/master-standalone-strict/leasecandidate-coordination-v1beta1.json
deleted file mode 100644
index aae5910044ca7adc606c89db3e531ebabcdbb938..0000000000000000000000000000000000000000
--- a/master-standalone-strict/leasecandidate-coordination-v1beta1.json
+++ /dev/null
@@ -1,338 +0,0 @@
-{
-  "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidate"
-      ]
-    },
-    "metadata": {
-      "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
-      "properties": {
-        "annotations": {
-          "additionalProperties": {
-            "type": [
-              "string",
-              "null"
-            ]
-          },
-          "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
-          "type": [
-            "object",
-            "null"
-          ]
-        },
-        "creationTimestamp": {
-          "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "deletionGracePeriodSeconds": {
-          "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
-          "format": "int64",
-          "type": [
-            "integer",
-            "null"
-          ]
-        },
-        "deletionTimestamp": {
-          "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "finalizers": {
-          "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
-          "items": {
-            "type": [
-              "string",
-              "null"
-            ]
-          },
-          "type": [
-            "array",
-            "null"
-          ],
-          "x-kubernetes-list-type": "set",
-          "x-kubernetes-patch-strategy": "merge"
-        },
-        "generateName": {
-          "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "generation": {
-          "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
-          "format": "int64",
-          "type": [
-            "integer",
-            "null"
-          ]
-        },
-        "labels": {
-          "additionalProperties": {
-            "type": [
-              "string",
-              "null"
-            ]
-          },
-          "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
-          "type": [
-            "object",
-            "null"
-          ]
-        },
-        "managedFields": {
-          "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
-          "items": {
-            "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
-            "properties": {
-              "apiVersion": {
-                "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "fieldsType": {
-                "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "fieldsV1": {
-                "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
-                "type": [
-                  "object",
-                  "null"
-                ]
-              },
-              "manager": {
-                "description": "Manager is an identifier of the workflow managing these fields.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "operation": {
-                "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "subresource": {
-                "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "time": {
-                "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              }
-            },
-            "type": [
-              "object",
-              "null"
-            ],
-            "additionalProperties": false
-          },
-          "type": [
-            "array",
-            "null"
-          ],
-          "x-kubernetes-list-type": "atomic"
-        },
-        "name": {
-          "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "namespace": {
-          "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "ownerReferences": {
-          "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
-          "items": {
-            "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
-            "properties": {
-              "apiVersion": {
-                "description": "API version of the referent.",
-                "type": "string"
-              },
-              "blockOwnerDeletion": {
-                "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
-                "type": [
-                  "boolean",
-                  "null"
-                ]
-              },
-              "controller": {
-                "description": "If true, this reference points to the managing controller.",
-                "type": [
-                  "boolean",
-                  "null"
-                ]
-              },
-              "kind": {
-                "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-                "type": "string"
-              },
-              "name": {
-                "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-                "type": "string"
-              },
-              "uid": {
-                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-                "type": "string"
-              }
-            },
-            "required": [
-              "apiVersion",
-              "kind",
-              "name",
-              "uid"
-            ],
-            "type": [
-              "object",
-              "null"
-            ],
-            "x-kubernetes-map-type": "atomic",
-            "additionalProperties": false
-          },
-          "type": [
-            "array",
-            "null"
-          ],
-          "x-kubernetes-list-map-keys": [
-            "uid"
-          ],
-          "x-kubernetes-list-type": "map",
-          "x-kubernetes-patch-merge-key": "uid",
-          "x-kubernetes-patch-strategy": "merge"
-        },
-        "resourceVersion": {
-          "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "selfLink": {
-          "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "uid": {
-          "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-          "type": [
-            "string",
-            "null"
-          ]
-        }
-      },
-      "type": [
-        "object",
-        "null"
-      ],
-      "additionalProperties": false
-    },
-    "spec": {
-      "description": "LeaseCandidateSpec is a specification of a Lease.",
-      "properties": {
-        "binaryVersion": {
-          "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-          "type": "string"
-        },
-        "emulationVersion": {
-          "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-          "type": "string"
-        },
-        "pingTime": {
-          "description": "MicroTime is version of Time with microsecond level precision.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "renewTime": {
-          "description": "MicroTime is version of Time with microsecond level precision.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "strategy": {
-          "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-          "type": "string"
-        }
-      },
-      "required": [
-        "leaseName",
-        "binaryVersion",
-        "strategy"
-      ],
-      "type": [
-        "object",
-        "null"
-      ],
-      "additionalProperties": false
-    }
-  },
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidate",
-      "version": "v1beta1"
-    }
-  ],
-  "additionalProperties": false,
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-standalone-strict/leasecandidate.json b/master-standalone-strict/leasecandidate.json
index d0945ff4278af14331706cf230c18e38b49ab8ae..d7643ab586a3cae1b41e03655db1b94192d9fc49 100644
--- a/master-standalone-strict/leasecandidate.json
+++ b/master-standalone-strict/leasecandidate.json
@@ -286,7 +286,7 @@
           ]
         },
         "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+          "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
           "type": "string"
         },
         "pingTime": {
@@ -327,7 +327,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidate",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "additionalProperties": false,
diff --git a/master-standalone-strict/leasecandidatelist-coordination-v1beta1.json b/master-standalone-strict/leasecandidatelist-coordination-v1beta1.json
deleted file mode 100644
index 0925d59ae981bce1b8517b5c7b9400e63bb74245..0000000000000000000000000000000000000000
--- a/master-standalone-strict/leasecandidatelist-coordination-v1beta1.json
+++ /dev/null
@@ -1,424 +0,0 @@
-{
-  "description": "LeaseCandidateList is a list of Lease objects.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "items": {
-      "description": "items is a list of schema objects.",
-      "items": {
-        "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-        "properties": {
-          "apiVersion": {
-            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-            "type": [
-              "string",
-              "null"
-            ],
-            "enum": [
-              "coordination.k8s.io/v1beta1"
-            ]
-          },
-          "kind": {
-            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-            "type": [
-              "string",
-              "null"
-            ],
-            "enum": [
-              "LeaseCandidate"
-            ]
-          },
-          "metadata": {
-            "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
-            "properties": {
-              "annotations": {
-                "additionalProperties": {
-                  "type": [
-                    "string",
-                    "null"
-                  ]
-                },
-                "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
-                "type": [
-                  "object",
-                  "null"
-                ]
-              },
-              "creationTimestamp": {
-                "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "deletionGracePeriodSeconds": {
-                "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
-                "format": "int64",
-                "type": [
-                  "integer",
-                  "null"
-                ]
-              },
-              "deletionTimestamp": {
-                "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "finalizers": {
-                "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
-                "items": {
-                  "type": [
-                    "string",
-                    "null"
-                  ]
-                },
-                "type": [
-                  "array",
-                  "null"
-                ],
-                "x-kubernetes-list-type": "set",
-                "x-kubernetes-patch-strategy": "merge"
-              },
-              "generateName": {
-                "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "generation": {
-                "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
-                "format": "int64",
-                "type": [
-                  "integer",
-                  "null"
-                ]
-              },
-              "labels": {
-                "additionalProperties": {
-                  "type": [
-                    "string",
-                    "null"
-                  ]
-                },
-                "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
-                "type": [
-                  "object",
-                  "null"
-                ]
-              },
-              "managedFields": {
-                "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
-                "items": {
-                  "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
-                  "properties": {
-                    "apiVersion": {
-                      "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "fieldsType": {
-                      "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "fieldsV1": {
-                      "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
-                      "type": [
-                        "object",
-                        "null"
-                      ]
-                    },
-                    "manager": {
-                      "description": "Manager is an identifier of the workflow managing these fields.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "operation": {
-                      "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "subresource": {
-                      "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "time": {
-                      "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                      "format": "date-time",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    }
-                  },
-                  "type": [
-                    "object",
-                    "null"
-                  ],
-                  "additionalProperties": false
-                },
-                "type": [
-                  "array",
-                  "null"
-                ],
-                "x-kubernetes-list-type": "atomic"
-              },
-              "name": {
-                "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "namespace": {
-                "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "ownerReferences": {
-                "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
-                "items": {
-                  "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
-                  "properties": {
-                    "apiVersion": {
-                      "description": "API version of the referent.",
-                      "type": "string"
-                    },
-                    "blockOwnerDeletion": {
-                      "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
-                      "type": [
-                        "boolean",
-                        "null"
-                      ]
-                    },
-                    "controller": {
-                      "description": "If true, this reference points to the managing controller.",
-                      "type": [
-                        "boolean",
-                        "null"
-                      ]
-                    },
-                    "kind": {
-                      "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-                      "type": "string"
-                    },
-                    "name": {
-                      "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-                      "type": "string"
-                    },
-                    "uid": {
-                      "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-                      "type": "string"
-                    }
-                  },
-                  "required": [
-                    "apiVersion",
-                    "kind",
-                    "name",
-                    "uid"
-                  ],
-                  "type": [
-                    "object",
-                    "null"
-                  ],
-                  "x-kubernetes-map-type": "atomic",
-                  "additionalProperties": false
-                },
-                "type": [
-                  "array",
-                  "null"
-                ],
-                "x-kubernetes-list-map-keys": [
-                  "uid"
-                ],
-                "x-kubernetes-list-type": "map",
-                "x-kubernetes-patch-merge-key": "uid",
-                "x-kubernetes-patch-strategy": "merge"
-              },
-              "resourceVersion": {
-                "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "selfLink": {
-                "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "uid": {
-                "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              }
-            },
-            "type": [
-              "object",
-              "null"
-            ],
-            "additionalProperties": false
-          },
-          "spec": {
-            "description": "LeaseCandidateSpec is a specification of a Lease.",
-            "properties": {
-              "binaryVersion": {
-                "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-                "type": "string"
-              },
-              "emulationVersion": {
-                "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "leaseName": {
-                "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-                "type": "string"
-              },
-              "pingTime": {
-                "description": "MicroTime is version of Time with microsecond level precision.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "renewTime": {
-                "description": "MicroTime is version of Time with microsecond level precision.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "strategy": {
-                "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-                "type": "string"
-              }
-            },
-            "required": [
-              "leaseName",
-              "binaryVersion",
-              "strategy"
-            ],
-            "type": [
-              "object",
-              "null"
-            ],
-            "additionalProperties": false
-          }
-        },
-        "type": [
-          "object",
-          "null"
-        ],
-        "x-kubernetes-group-version-kind": [
-          {
-            "group": "coordination.k8s.io",
-            "kind": "LeaseCandidate",
-            "version": "v1beta1"
-          }
-        ],
-        "additionalProperties": false
-      },
-      "type": [
-        "array",
-        "null"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidateList"
-      ]
-    },
-    "metadata": {
-      "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
-      "properties": {
-        "continue": {
-          "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "remainingItemCount": {
-          "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
-          "format": "int64",
-          "type": [
-            "integer",
-            "null"
-          ]
-        },
-        "resourceVersion": {
-          "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "selfLink": {
-          "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
-          "type": [
-            "string",
-            "null"
-          ]
-        }
-      },
-      "type": [
-        "object",
-        "null"
-      ],
-      "additionalProperties": false
-    }
-  },
-  "required": [
-    "items"
-  ],
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidateList",
-      "version": "v1beta1"
-    }
-  ],
-  "additionalProperties": false,
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-standalone-strict/leasecandidatelist.json b/master-standalone-strict/leasecandidatelist.json
index 4532611203cfd8a7e591d7ece46d042e11ca20f2..488ed75b7892e84adec9bae143ced05ab14f7305 100644
--- a/master-standalone-strict/leasecandidatelist.json
+++ b/master-standalone-strict/leasecandidatelist.json
@@ -298,7 +298,7 @@
                 ]
               },
               "leaseName": {
-                "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+                "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
                 "type": "string"
               },
               "pingTime": {
@@ -342,7 +342,7 @@
           {
             "group": "coordination.k8s.io",
             "kind": "LeaseCandidate",
-            "version": "v1beta1"
+            "version": "v1alpha2"
           }
         ],
         "additionalProperties": false
@@ -410,7 +410,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidateList",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "additionalProperties": false,
diff --git a/master-standalone-strict/leasecandidatespec-coordination-v1beta1.json b/master-standalone-strict/leasecandidatespec-coordination-v1beta1.json
deleted file mode 100644
index 568c4caee77f4f1efdc43d12da99bf51437ab919..0000000000000000000000000000000000000000
--- a/master-standalone-strict/leasecandidatespec-coordination-v1beta1.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
-  "description": "LeaseCandidateSpec is a specification of a Lease.",
-  "properties": {
-    "binaryVersion": {
-      "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "emulationVersion": {
-      "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "pingTime": {
-      "description": "MicroTime is version of Time with microsecond level precision.",
-      "format": "date-time",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "renewTime": {
-      "description": "MicroTime is version of Time with microsecond level precision.",
-      "format": "date-time",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "strategy": {
-      "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-      "type": [
-        "string",
-        "null"
-      ]
-    }
-  },
-  "required": [
-    "leaseName",
-    "binaryVersion",
-    "strategy"
-  ],
-  "type": "object",
-  "additionalProperties": false,
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-standalone-strict/leasecandidatespec.json b/master-standalone-strict/leasecandidatespec.json
index 568c4caee77f4f1efdc43d12da99bf51437ab919..194f545a0211ae17f1a08f4a6ff3beca36424431 100644
--- a/master-standalone-strict/leasecandidatespec.json
+++ b/master-standalone-strict/leasecandidatespec.json
@@ -16,7 +16,7 @@
       ]
     },
     "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+      "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
       "type": [
         "string",
         "null"
diff --git a/master-standalone/_definitions.json b/master-standalone/_definitions.json
index eb1ac29a6e7fb171a6aadb93ba827225fc53df58..6e1354f8c017e35fa4de4523eacca04ec0d1c551 100644
--- a/master-standalone/_definitions.json
+++ b/master-standalone/_definitions.json
@@ -5599,111 +5599,6 @@
       ],
       "type": "object"
     },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidate": {
-      "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidate"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
-          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        },
-        "spec": {
-          "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
-          "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
-        }
-      },
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidate",
-          "version": "v1beta1"
-        }
-      ]
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateList": {
-      "description": "LeaseCandidateList is a list of Lease objects.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "items": {
-          "description": "items is a list of schema objects.",
-          "items": {
-            "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-          },
-          "type": "array"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidateList"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
-          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        }
-      },
-      "required": [
-        "items"
-      ],
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidateList",
-          "version": "v1beta1"
-        }
-      ]
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateSpec": {
-      "description": "LeaseCandidateSpec is a specification of a Lease.",
-      "properties": {
-        "binaryVersion": {
-          "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-          "type": "string"
-        },
-        "emulationVersion": {
-          "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-          "type": "string"
-        },
-        "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-          "type": "string"
-        },
-        "pingTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "PingTime is the last time that the server has requested the LeaseCandidate to renew. It is only done during leader election to check if any LeaseCandidates have become ineligible. When PingTime is updated, the LeaseCandidate will respond by updating RenewTime."
-        },
-        "renewTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "RenewTime is the time that the LeaseCandidate was last updated. Any time a Lease needs to do leader election, the PingTime field is updated to signal to the LeaseCandidate that they should update the RenewTime. Old LeaseCandidate objects are also garbage collected if it has been hours since the last renew. The PingTime field is updated regularly to prevent garbage collection for still active LeaseCandidates."
-        },
-        "strategy": {
-          "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-          "type": "string"
-        }
-      },
-      "required": [
-        "leaseName",
-        "binaryVersion",
-        "strategy"
-      ],
-      "type": "object"
-    },
     "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
       "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
       "properties": {
diff --git a/master-standalone/all.json b/master-standalone/all.json
index 3bc8ab55184b1f33fa54be8e3786f8d9305203c0..28bda13e7f5a46d1481a5d997e9c1af425bc55f1 100644
--- a/master-standalone/all.json
+++ b/master-standalone/all.json
@@ -552,15 +552,6 @@
     {
       "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidateSpec"
     },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-    },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateList"
-    },
-    {
-      "$ref": "_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec"
-    },
     {
       "$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource"
     },
diff --git a/master-standalone/leasecandidate-coordination-v1beta1.json b/master-standalone/leasecandidate-coordination-v1beta1.json
deleted file mode 100644
index 585934c9bad8c8bdb81fec3f44319c3b90903bec..0000000000000000000000000000000000000000
--- a/master-standalone/leasecandidate-coordination-v1beta1.json
+++ /dev/null
@@ -1,333 +0,0 @@
-{
-  "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidate"
-      ]
-    },
-    "metadata": {
-      "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
-      "properties": {
-        "annotations": {
-          "additionalProperties": {
-            "type": [
-              "string",
-              "null"
-            ]
-          },
-          "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
-          "type": [
-            "object",
-            "null"
-          ]
-        },
-        "creationTimestamp": {
-          "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "deletionGracePeriodSeconds": {
-          "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
-          "format": "int64",
-          "type": [
-            "integer",
-            "null"
-          ]
-        },
-        "deletionTimestamp": {
-          "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "finalizers": {
-          "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
-          "items": {
-            "type": [
-              "string",
-              "null"
-            ]
-          },
-          "type": [
-            "array",
-            "null"
-          ],
-          "x-kubernetes-list-type": "set",
-          "x-kubernetes-patch-strategy": "merge"
-        },
-        "generateName": {
-          "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "generation": {
-          "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
-          "format": "int64",
-          "type": [
-            "integer",
-            "null"
-          ]
-        },
-        "labels": {
-          "additionalProperties": {
-            "type": [
-              "string",
-              "null"
-            ]
-          },
-          "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
-          "type": [
-            "object",
-            "null"
-          ]
-        },
-        "managedFields": {
-          "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
-          "items": {
-            "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
-            "properties": {
-              "apiVersion": {
-                "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "fieldsType": {
-                "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "fieldsV1": {
-                "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
-                "type": [
-                  "object",
-                  "null"
-                ]
-              },
-              "manager": {
-                "description": "Manager is an identifier of the workflow managing these fields.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "operation": {
-                "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "subresource": {
-                "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "time": {
-                "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              }
-            },
-            "type": [
-              "object",
-              "null"
-            ]
-          },
-          "type": [
-            "array",
-            "null"
-          ],
-          "x-kubernetes-list-type": "atomic"
-        },
-        "name": {
-          "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "namespace": {
-          "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "ownerReferences": {
-          "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
-          "items": {
-            "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
-            "properties": {
-              "apiVersion": {
-                "description": "API version of the referent.",
-                "type": "string"
-              },
-              "blockOwnerDeletion": {
-                "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
-                "type": [
-                  "boolean",
-                  "null"
-                ]
-              },
-              "controller": {
-                "description": "If true, this reference points to the managing controller.",
-                "type": [
-                  "boolean",
-                  "null"
-                ]
-              },
-              "kind": {
-                "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-                "type": "string"
-              },
-              "name": {
-                "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-                "type": "string"
-              },
-              "uid": {
-                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-                "type": "string"
-              }
-            },
-            "required": [
-              "apiVersion",
-              "kind",
-              "name",
-              "uid"
-            ],
-            "type": [
-              "object",
-              "null"
-            ],
-            "x-kubernetes-map-type": "atomic"
-          },
-          "type": [
-            "array",
-            "null"
-          ],
-          "x-kubernetes-list-map-keys": [
-            "uid"
-          ],
-          "x-kubernetes-list-type": "map",
-          "x-kubernetes-patch-merge-key": "uid",
-          "x-kubernetes-patch-strategy": "merge"
-        },
-        "resourceVersion": {
-          "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "selfLink": {
-          "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "uid": {
-          "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-          "type": [
-            "string",
-            "null"
-          ]
-        }
-      },
-      "type": [
-        "object",
-        "null"
-      ]
-    },
-    "spec": {
-      "description": "LeaseCandidateSpec is a specification of a Lease.",
-      "properties": {
-        "binaryVersion": {
-          "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-          "type": "string"
-        },
-        "emulationVersion": {
-          "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-          "type": "string"
-        },
-        "pingTime": {
-          "description": "MicroTime is version of Time with microsecond level precision.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "renewTime": {
-          "description": "MicroTime is version of Time with microsecond level precision.",
-          "format": "date-time",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "strategy": {
-          "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-          "type": "string"
-        }
-      },
-      "required": [
-        "leaseName",
-        "binaryVersion",
-        "strategy"
-      ],
-      "type": [
-        "object",
-        "null"
-      ]
-    }
-  },
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidate",
-      "version": "v1beta1"
-    }
-  ],
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-standalone/leasecandidate.json b/master-standalone/leasecandidate.json
index 4815dfb248f71285f6066ebd73fc5c2da8b6729a..39dacd5786370e854dbad8f8a4bc02336ae12dd0 100644
--- a/master-standalone/leasecandidate.json
+++ b/master-standalone/leasecandidate.json
@@ -283,7 +283,7 @@
           ]
         },
         "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+          "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
           "type": "string"
         },
         "pingTime": {
@@ -323,7 +323,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidate",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "$schema": "http://json-schema.org/schema#"
diff --git a/master-standalone/leasecandidatelist-coordination-v1beta1.json b/master-standalone/leasecandidatelist-coordination-v1beta1.json
deleted file mode 100644
index e3eb8d58a6f23af28b13ddc8ded5ed3d4e7b72eb..0000000000000000000000000000000000000000
--- a/master-standalone/leasecandidatelist-coordination-v1beta1.json
+++ /dev/null
@@ -1,417 +0,0 @@
-{
-  "description": "LeaseCandidateList is a list of Lease objects.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "items": {
-      "description": "items is a list of schema objects.",
-      "items": {
-        "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-        "properties": {
-          "apiVersion": {
-            "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-            "type": [
-              "string",
-              "null"
-            ],
-            "enum": [
-              "coordination.k8s.io/v1beta1"
-            ]
-          },
-          "kind": {
-            "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-            "type": [
-              "string",
-              "null"
-            ],
-            "enum": [
-              "LeaseCandidate"
-            ]
-          },
-          "metadata": {
-            "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
-            "properties": {
-              "annotations": {
-                "additionalProperties": {
-                  "type": [
-                    "string",
-                    "null"
-                  ]
-                },
-                "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
-                "type": [
-                  "object",
-                  "null"
-                ]
-              },
-              "creationTimestamp": {
-                "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "deletionGracePeriodSeconds": {
-                "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
-                "format": "int64",
-                "type": [
-                  "integer",
-                  "null"
-                ]
-              },
-              "deletionTimestamp": {
-                "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "finalizers": {
-                "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.",
-                "items": {
-                  "type": [
-                    "string",
-                    "null"
-                  ]
-                },
-                "type": [
-                  "array",
-                  "null"
-                ],
-                "x-kubernetes-list-type": "set",
-                "x-kubernetes-patch-strategy": "merge"
-              },
-              "generateName": {
-                "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "generation": {
-                "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
-                "format": "int64",
-                "type": [
-                  "integer",
-                  "null"
-                ]
-              },
-              "labels": {
-                "additionalProperties": {
-                  "type": [
-                    "string",
-                    "null"
-                  ]
-                },
-                "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
-                "type": [
-                  "object",
-                  "null"
-                ]
-              },
-              "managedFields": {
-                "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.",
-                "items": {
-                  "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
-                  "properties": {
-                    "apiVersion": {
-                      "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "fieldsType": {
-                      "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "fieldsV1": {
-                      "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
-                      "type": [
-                        "object",
-                        "null"
-                      ]
-                    },
-                    "manager": {
-                      "description": "Manager is an identifier of the workflow managing these fields.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "operation": {
-                      "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "subresource": {
-                      "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    },
-                    "time": {
-                      "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.",
-                      "format": "date-time",
-                      "type": [
-                        "string",
-                        "null"
-                      ]
-                    }
-                  },
-                  "type": [
-                    "object",
-                    "null"
-                  ]
-                },
-                "type": [
-                  "array",
-                  "null"
-                ],
-                "x-kubernetes-list-type": "atomic"
-              },
-              "name": {
-                "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "namespace": {
-                "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "ownerReferences": {
-                "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.",
-                "items": {
-                  "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
-                  "properties": {
-                    "apiVersion": {
-                      "description": "API version of the referent.",
-                      "type": "string"
-                    },
-                    "blockOwnerDeletion": {
-                      "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.",
-                      "type": [
-                        "boolean",
-                        "null"
-                      ]
-                    },
-                    "controller": {
-                      "description": "If true, this reference points to the managing controller.",
-                      "type": [
-                        "boolean",
-                        "null"
-                      ]
-                    },
-                    "kind": {
-                      "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-                      "type": "string"
-                    },
-                    "name": {
-                      "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
-                      "type": "string"
-                    },
-                    "uid": {
-                      "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-                      "type": "string"
-                    }
-                  },
-                  "required": [
-                    "apiVersion",
-                    "kind",
-                    "name",
-                    "uid"
-                  ],
-                  "type": [
-                    "object",
-                    "null"
-                  ],
-                  "x-kubernetes-map-type": "atomic"
-                },
-                "type": [
-                  "array",
-                  "null"
-                ],
-                "x-kubernetes-list-map-keys": [
-                  "uid"
-                ],
-                "x-kubernetes-list-type": "map",
-                "x-kubernetes-patch-merge-key": "uid",
-                "x-kubernetes-patch-strategy": "merge"
-              },
-              "resourceVersion": {
-                "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "selfLink": {
-                "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "uid": {
-                "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              }
-            },
-            "type": [
-              "object",
-              "null"
-            ]
-          },
-          "spec": {
-            "description": "LeaseCandidateSpec is a specification of a Lease.",
-            "properties": {
-              "binaryVersion": {
-                "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-                "type": "string"
-              },
-              "emulationVersion": {
-                "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "leaseName": {
-                "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-                "type": "string"
-              },
-              "pingTime": {
-                "description": "MicroTime is version of Time with microsecond level precision.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "renewTime": {
-                "description": "MicroTime is version of Time with microsecond level precision.",
-                "format": "date-time",
-                "type": [
-                  "string",
-                  "null"
-                ]
-              },
-              "strategy": {
-                "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-                "type": "string"
-              }
-            },
-            "required": [
-              "leaseName",
-              "binaryVersion",
-              "strategy"
-            ],
-            "type": [
-              "object",
-              "null"
-            ]
-          }
-        },
-        "type": [
-          "object",
-          "null"
-        ],
-        "x-kubernetes-group-version-kind": [
-          {
-            "group": "coordination.k8s.io",
-            "kind": "LeaseCandidate",
-            "version": "v1beta1"
-          }
-        ]
-      },
-      "type": [
-        "array",
-        "null"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidateList"
-      ]
-    },
-    "metadata": {
-      "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
-      "properties": {
-        "continue": {
-          "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "remainingItemCount": {
-          "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.",
-          "format": "int64",
-          "type": [
-            "integer",
-            "null"
-          ]
-        },
-        "resourceVersion": {
-          "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency",
-          "type": [
-            "string",
-            "null"
-          ]
-        },
-        "selfLink": {
-          "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.",
-          "type": [
-            "string",
-            "null"
-          ]
-        }
-      },
-      "type": [
-        "object",
-        "null"
-      ]
-    }
-  },
-  "required": [
-    "items"
-  ],
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidateList",
-      "version": "v1beta1"
-    }
-  ],
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-standalone/leasecandidatelist.json b/master-standalone/leasecandidatelist.json
index 065a16a03a47f6b379af51188f3ab0a99af01dec..055a0df8aeb4b89d9c27d5f158351aa7ffcc0d71 100644
--- a/master-standalone/leasecandidatelist.json
+++ b/master-standalone/leasecandidatelist.json
@@ -295,7 +295,7 @@
                 ]
               },
               "leaseName": {
-                "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+                "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
                 "type": "string"
               },
               "pingTime": {
@@ -338,7 +338,7 @@
           {
             "group": "coordination.k8s.io",
             "kind": "LeaseCandidate",
-            "version": "v1beta1"
+            "version": "v1alpha2"
           }
         ]
       },
@@ -404,7 +404,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidateList",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "$schema": "http://json-schema.org/schema#"
diff --git a/master-standalone/leasecandidatespec-coordination-v1beta1.json b/master-standalone/leasecandidatespec-coordination-v1beta1.json
deleted file mode 100644
index 7d17c6137d88388aca881caa27e51a3fc2d9618a..0000000000000000000000000000000000000000
--- a/master-standalone/leasecandidatespec-coordination-v1beta1.json
+++ /dev/null
@@ -1,56 +0,0 @@
-{
-  "description": "LeaseCandidateSpec is a specification of a Lease.",
-  "properties": {
-    "binaryVersion": {
-      "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "emulationVersion": {
-      "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "pingTime": {
-      "description": "MicroTime is version of Time with microsecond level precision.",
-      "format": "date-time",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "renewTime": {
-      "description": "MicroTime is version of Time with microsecond level precision.",
-      "format": "date-time",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "strategy": {
-      "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-      "type": [
-        "string",
-        "null"
-      ]
-    }
-  },
-  "required": [
-    "leaseName",
-    "binaryVersion",
-    "strategy"
-  ],
-  "type": "object",
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master-standalone/leasecandidatespec.json b/master-standalone/leasecandidatespec.json
index 7d17c6137d88388aca881caa27e51a3fc2d9618a..ed030cdf6c2af64fd8758b598155343399f05500 100644
--- a/master-standalone/leasecandidatespec.json
+++ b/master-standalone/leasecandidatespec.json
@@ -16,7 +16,7 @@
       ]
     },
     "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+      "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
       "type": [
         "string",
         "null"
diff --git a/master/_definitions.json b/master/_definitions.json
index eb1ac29a6e7fb171a6aadb93ba827225fc53df58..6e1354f8c017e35fa4de4523eacca04ec0d1c551 100644
--- a/master/_definitions.json
+++ b/master/_definitions.json
@@ -5599,111 +5599,6 @@
       ],
       "type": "object"
     },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidate": {
-      "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidate"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
-          "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        },
-        "spec": {
-          "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
-          "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
-        }
-      },
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidate",
-          "version": "v1beta1"
-        }
-      ]
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateList": {
-      "description": "LeaseCandidateList is a list of Lease objects.",
-      "properties": {
-        "apiVersion": {
-          "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-          "type": "string"
-        },
-        "items": {
-          "description": "items is a list of schema objects.",
-          "items": {
-            "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-          },
-          "type": "array"
-        },
-        "kind": {
-          "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-          "type": "string",
-          "enum": [
-            "LeaseCandidateList"
-          ]
-        },
-        "metadata": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
-          "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-        }
-      },
-      "required": [
-        "items"
-      ],
-      "type": "object",
-      "x-kubernetes-group-version-kind": [
-        {
-          "group": "coordination.k8s.io",
-          "kind": "LeaseCandidateList",
-          "version": "v1beta1"
-        }
-      ]
-    },
-    "io.k8s.api.coordination.v1beta1.LeaseCandidateSpec": {
-      "description": "LeaseCandidateSpec is a specification of a Lease.",
-      "properties": {
-        "binaryVersion": {
-          "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-          "type": "string"
-        },
-        "emulationVersion": {
-          "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-          "type": "string"
-        },
-        "leaseName": {
-          "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-          "type": "string"
-        },
-        "pingTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "PingTime is the last time that the server has requested the LeaseCandidate to renew. It is only done during leader election to check if any LeaseCandidates have become ineligible. When PingTime is updated, the LeaseCandidate will respond by updating RenewTime."
-        },
-        "renewTime": {
-          "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-          "description": "RenewTime is the time that the LeaseCandidate was last updated. Any time a Lease needs to do leader election, the PingTime field is updated to signal to the LeaseCandidate that they should update the RenewTime. Old LeaseCandidate objects are also garbage collected if it has been hours since the last renew. The PingTime field is updated regularly to prevent garbage collection for still active LeaseCandidates."
-        },
-        "strategy": {
-          "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-          "type": "string"
-        }
-      },
-      "required": [
-        "leaseName",
-        "binaryVersion",
-        "strategy"
-      ],
-      "type": "object"
-    },
     "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": {
       "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.",
       "properties": {
diff --git a/master/all.json b/master/all.json
index 48154bbd9aa88d354bc8cf1bda279b31f861cdc3..903e5513d5cff9d227c6d2217139757e32a074b9 100644
--- a/master/all.json
+++ b/master/all.json
@@ -552,15 +552,6 @@
     {
       "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidateSpec"
     },
-    {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-    },
-    {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateList"
-    },
-    {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec"
-    },
     {
       "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource"
     },
diff --git a/master/leasecandidate-coordination-v1beta1.json b/master/leasecandidate-coordination-v1beta1.json
deleted file mode 100644
index 23776197cb28c844433488ebcab06b29d89b8575..0000000000000000000000000000000000000000
--- a/master/leasecandidate-coordination-v1beta1.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
-  "description": "LeaseCandidate defines a candidate for a Lease object. Candidates are created such that coordinated leader election will pick the best leader from the list of candidates.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidate"
-      ]
-    },
-    "metadata": {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta",
-      "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-    },
-    "spec": {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
-      "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
-    }
-  },
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidate",
-      "version": "v1beta1"
-    }
-  ],
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master/leasecandidate.json b/master/leasecandidate.json
index 45042a015488a137941e611ef7f5fc22399a3b35..3d1b51ffb89dbcbcfa2360f4d82bb06fa5553845 100644
--- a/master/leasecandidate.json
+++ b/master/leasecandidate.json
@@ -23,7 +23,7 @@
       "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
     },
     "spec": {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidateSpec",
+      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidateSpec",
       "description": "spec contains the specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status"
     }
   },
@@ -32,7 +32,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidate",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "$schema": "http://json-schema.org/schema#"
diff --git a/master/leasecandidatelist-coordination-v1beta1.json b/master/leasecandidatelist-coordination-v1beta1.json
deleted file mode 100644
index da720052d6479b6aa73766bd088092bf1bb3e903..0000000000000000000000000000000000000000
--- a/master/leasecandidatelist-coordination-v1beta1.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
-  "description": "LeaseCandidateList is a list of Lease objects.",
-  "properties": {
-    "apiVersion": {
-      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "coordination.k8s.io/v1beta1"
-      ]
-    },
-    "items": {
-      "description": "items is a list of schema objects.",
-      "items": {
-        "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
-      },
-      "type": [
-        "array",
-        "null"
-      ]
-    },
-    "kind": {
-      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
-      "type": [
-        "string",
-        "null"
-      ],
-      "enum": [
-        "LeaseCandidateList"
-      ]
-    },
-    "metadata": {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta",
-      "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
-    }
-  },
-  "required": [
-    "items"
-  ],
-  "type": "object",
-  "x-kubernetes-group-version-kind": [
-    {
-      "group": "coordination.k8s.io",
-      "kind": "LeaseCandidateList",
-      "version": "v1beta1"
-    }
-  ],
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master/leasecandidatelist.json b/master/leasecandidatelist.json
index c299f0fb9f5eb03dee0b8de7355dffe474dd9226..068c7a4c616702463ba9979b9ed66f441c5ec431 100644
--- a/master/leasecandidatelist.json
+++ b/master/leasecandidatelist.json
@@ -11,7 +11,7 @@
     "items": {
       "description": "items is a list of schema objects.",
       "items": {
-        "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1beta1.LeaseCandidate"
+        "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.coordination.v1alpha2.LeaseCandidate"
       },
       "type": [
         "array",
@@ -41,7 +41,7 @@
     {
       "group": "coordination.k8s.io",
       "kind": "LeaseCandidateList",
-      "version": "v1beta1"
+      "version": "v1alpha2"
     }
   ],
   "$schema": "http://json-schema.org/schema#"
diff --git a/master/leasecandidatespec-coordination-v1beta1.json b/master/leasecandidatespec-coordination-v1beta1.json
deleted file mode 100644
index abfa87ef595b13fbff3be8315b75972966a226a5..0000000000000000000000000000000000000000
--- a/master/leasecandidatespec-coordination-v1beta1.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
-  "description": "LeaseCandidateSpec is a specification of a Lease.",
-  "properties": {
-    "binaryVersion": {
-      "description": "BinaryVersion is the binary version. It must be in a semver format without leading `v`. This field is required.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "emulationVersion": {
-      "description": "EmulationVersion is the emulation version. It must be in a semver format without leading `v`. EmulationVersion must be less than or equal to BinaryVersion. This field is required when strategy is \"OldestEmulationVersion\"",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
-      "type": [
-        "string",
-        "null"
-      ]
-    },
-    "pingTime": {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-      "description": "PingTime is the last time that the server has requested the LeaseCandidate to renew. It is only done during leader election to check if any LeaseCandidates have become ineligible. When PingTime is updated, the LeaseCandidate will respond by updating RenewTime."
-    },
-    "renewTime": {
-      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime",
-      "description": "RenewTime is the time that the LeaseCandidate was last updated. Any time a Lease needs to do leader election, the PingTime field is updated to signal to the LeaseCandidate that they should update the RenewTime. Old LeaseCandidate objects are also garbage collected if it has been hours since the last renew. The PingTime field is updated regularly to prevent garbage collection for still active LeaseCandidates."
-    },
-    "strategy": {
-      "description": "Strategy is the strategy that coordinated leader election will use for picking the leader. If multiple candidates for the same Lease return different strategies, the strategy provided by the candidate with the latest BinaryVersion will be used. If there is still conflict, this is a user error and coordinated leader election will not operate the Lease until resolved.",
-      "type": [
-        "string",
-        "null"
-      ]
-    }
-  },
-  "required": [
-    "leaseName",
-    "binaryVersion",
-    "strategy"
-  ],
-  "type": "object",
-  "$schema": "http://json-schema.org/schema#"
-}
\ No newline at end of file
diff --git a/master/leasecandidatespec.json b/master/leasecandidatespec.json
index abfa87ef595b13fbff3be8315b75972966a226a5..52d80f40bc8c8c45465637ab3c3bd75d1f9ffd57 100644
--- a/master/leasecandidatespec.json
+++ b/master/leasecandidatespec.json
@@ -16,7 +16,7 @@
       ]
     },
     "leaseName": {
-      "description": "LeaseName is the name of the lease for which this candidate is contending. The limits on this field are the same as on Lease.name. Multiple lease candidates may reference the same Lease.name. This field is immutable.",
+      "description": "LeaseName is the name of the lease for which this candidate is contending. This field is immutable.",
       "type": [
         "string",
         "null"