Skip to content

Commit 02c524f

Browse files
pengzhoumlPeng Zhou
and
Peng Zhou
authored
MLE-20079 update API version to v1 (#72)
* MLE-20079: update api version * update manifests * update charts * remove bundle * update crd --------- Co-authored-by: Peng Zhou <[email protected]>
1 parent 5df6cef commit 02c524f

File tree

50 files changed

+16224
-9123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+16224
-9123
lines changed

PROJECT

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ resources:
1515
crdVersion: v1
1616
namespaced: true
1717
controller: true
18-
domain: marklogic.com
19-
group: database
18+
domain: progress.com
19+
group: marklogic
2020
kind: MarklogicGroup
21-
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1alpha1
22-
version: v1alpha1
21+
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1
22+
version: v1
2323
- api:
2424
crdVersion: v1
2525
namespaced: true
2626
controller: true
27-
domain: marklogic.com
28-
group: database
27+
domain: progress.com
28+
group: marklogic
2929
kind: MarklogicCluster
30-
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1alpha1
31-
version: v1alpha1
30+
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1
31+
version: v1
3232
version: "3"

api/v1alpha1/common_types.go renamed to api/v1/common_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package v1alpha1
1+
package v1
22

33
import (
44
corev1 "k8s.io/api/core/v1"

api/v1alpha1/groupversion_info.go renamed to api/v1/groupversion_info.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
// Package v1alpha1 contains API Schema definitions for the database v1alpha1 API group
17+
// Package v1 contains API Schema definitions for the database v1 API group
1818
// +kubebuilder:object:generate=true
19-
// +groupName=database.marklogic.com
20-
package v1alpha1
19+
// +groupName=marklogic.progress.com
20+
package v1
2121

2222
import (
2323
"k8s.io/apimachinery/pkg/runtime/schema"
@@ -26,7 +26,7 @@ import (
2626

2727
var (
2828
// GroupVersion is group version used to register these objects
29-
GroupVersion = schema.GroupVersion{Group: "database.marklogic.com", Version: "v1alpha1"}
29+
GroupVersion = schema.GroupVersion{Group: "marklogic.progress.com", Version: "v1"}
3030

3131
// SchemeBuilder is used to add go types to the GroupVersionKind scheme
3232
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}

api/v1alpha1/marklogiccluster_types.go renamed to api/v1/marklogiccluster_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package v1alpha1
17+
package v1
1818

1919
import (
2020
appsv1 "k8s.io/api/apps/v1"

api/v1alpha1/marklogicgroup_types.go renamed to api/v1/marklogicgroup_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package v1alpha1
17+
package v1
1818

1919
import (
2020
appsv1 "k8s.io/api/apps/v1"

0 commit comments

Comments
 (0)