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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ resources:
crdVersion: v1
namespaced: true
controller: true
domain: marklogic.com
group: database
domain: progress.com
group: marklogic
kind: MarklogicGroup
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1alpha1
version: v1alpha1
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1
version: v1
- api:
crdVersion: v1
namespaced: true
controller: true
domain: marklogic.com
group: database
domain: progress.com
group: marklogic
kind: MarklogicCluster
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1alpha1
version: v1alpha1
path: github.com/marklogic/marklogic-operator-kubernetes/api/v1
version: v1
version: "3"
2 changes: 1 addition & 1 deletion api/v1alpha1/common_types.go → api/v1/common_types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1alpha1
package v1

import (
corev1 "k8s.io/api/core/v1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

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

import (
"k8s.io/apimachinery/pkg/runtime/schema"
Expand All @@ -26,7 +26,7 @@ import (

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

// SchemeBuilder is used to add go types to the GroupVersionKind scheme
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package v1alpha1
package v1

import (
appsv1 "k8s.io/api/apps/v1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package v1alpha1
package v1

import (
appsv1 "k8s.io/api/apps/v1"
Expand Down
Loading