Skip to content

Commit

Permalink
Merge pull request #89 from adamreese/spinkube-domain
Browse files Browse the repository at this point in the history
Update the SpinApp CRD domain to 'spinkube.dev'
  • Loading branch information
bacongobbler authored Nov 4, 2024
2 parents 05cdca8 + 0981f0b commit b6280bb
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.54
version: v1.61.0
args: --timeout 3m
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Use the secret when scaffolding the SpinApp
```sh
$) spin kube scaffold --from bacongobbler/hello-rust:latest --image-pull-secret registry-credentials

apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: hello-rust
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var deployCmd = &cobra.Command{
Namespace: namespace,
},
TypeMeta: metav1.TypeMeta{
APIVersion: "core.spinoperator.dev/v1alpha1",
APIVersion: "core.spinkube.dev/v1alpha1",
Kind: "SpinApp",
},
Spec: spinv1alpha1.SpinAppSpec{
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/scaffold.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type appConfig struct {
Variables map[string]string
}

var manifestStr = `apiVersion: core.spinoperator.dev/v1alpha1
var manifestStr = `apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: {{ .Name }}
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/testdata/hpa_autoscaler.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: example-app
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/testdata/keda_autoscaler.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: example-app
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/testdata/multiple_image_secrets.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: example-app
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/testdata/one_image_secret.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: example-app
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/testdata/scaffold_image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: example-app
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/testdata/scaffold_runtime_config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: example-app
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/testdata/variables.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: core.spinoperator.dev/v1alpha1
apiVersion: core.spinkube.dev/v1alpha1
kind: SpinApp
metadata:
name: example-app
Expand Down

0 comments on commit b6280bb

Please sign in to comment.