Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
Signed-off-by: Max Schmidt <[email protected]>
Signed-off-by: Sven Pfennig <[email protected]>
  • Loading branch information
mschmidt291 authored and 0xE282B0 committed Oct 19, 2022
1 parent 025b89e commit 5bde255
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 62 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 0.0.1
VERSION ?= v0.0.1

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand All @@ -28,8 +28,8 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
# This variable is used to construct full image tags for bundle and catalog images.
#
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
# kwasm.sh/kwasm-provisioner-operator-bundle:$VERSION and kwasm.sh/kwasm-provisioner-operator-catalog:$VERSION.
IMAGE_TAG_BASE ?= kwasm.sh/kwasm-provisioner-operator
# kwasm/kwasm-operator-bundle:$VERSION and kwasm/kwasm-operator-catalog:$VERSION.
IMAGE_TAG_BASE ?= ghcr.io/kwasm/kwasm-operator

# BUNDLE_IMG defines the image:tag used for the bundle.
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
Expand Down Expand Up @@ -87,7 +87,7 @@ help: ## Display this help.

.PHONY: manifests
manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and CustomResourceDefinition objects.
$(CONTROLLER_GEN) rbac:roleName=manager-role crd webhook paths="./..." output:crd:artifacts:config=config/crd/bases
$(CONTROLLER_GEN) rbac:roleName=manager-role webhook paths="./..." output:artifacts

.PHONY: generate
generate: controller-gen ## Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations.
Expand Down
4 changes: 2 additions & 2 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ layout:
plugins:
manifests.sdk.operatorframework.io/v2: {}
scorecard.sdk.operatorframework.io/v2: {}
projectName: kwasm-provisioner-operator
repo: github.com/kwasm/kwasm-provisioner-operator
projectName: kwasm-operator
repo: github.com/kwasm/kwasm-operator
resources:
- controller: true
group: batch
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# kwasm-provisioner-operator
# kwasm-operator
This Kubernetes Operators installs WebAssembly support on your Kubernetes Nodes

## Example
Expand Down
50 changes: 0 additions & 50 deletions config/crd/bases/wasm.kwasm.sh_provisioners.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions config/default/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Adds namespace to all resources.
namespace: kwasm-provisioner-operator-system
namespace: kwasm-operator-system

# Value of this field is prepended to the
# names of all resources, e.g. a deployment named
# "wordpress" becomes "alices-wordpress".
# Note that it should also match with the prefix (text before '-') of the namespace
# field above.
namePrefix: kwasm-provisioner-operator-
namePrefix: kwasm-operator-

# Labels to add to all resources and selectors.
#commonLabels:
Expand Down
2 changes: 1 addition & 1 deletion config/manifests/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# These resources constitute the fully configured set of manifests
# used to generate the 'manifests/' directory in a bundle.
resources:
- bases/kwasm-provisioner-operator.clusterserviceversion.yaml
- bases/kwasm-operator.clusterserviceversion.yaml
- ../default
- ../samples
- ../scorecard
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/kwasm/kwasm-provisioner-operator
module github.com/kwasm/kwasm-operator

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"

"github.com/kwasm/kwasm-provisioner-operator/controllers"
"github.com/kwasm/kwasm-operator/controllers"
//+kubebuilder:scaffold:imports
)

Expand Down

0 comments on commit 5bde255

Please sign in to comment.