Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix duplicate make target #1056

Merged
merged 1 commit into from
Apr 26, 2024
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ test: manifests generate fmt vet test-only ## Run tests.
test-only: envtest ## Run *only* the tests - no generation, linting etc.
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" go test ./... -coverprofile cover.out

.PHONY: openapi-extractor
.PHONY: extract-openapi
extract-openapi: envtest openapi-extractor
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" $(OPENAPI_EXTRACTOR) \
--apiserver-package="github.com/ironcore-dev/ironcore/cmd/ironcore-apiserver" \
Expand Down
9 changes: 7 additions & 2 deletions gen/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -65240,13 +65240,14 @@
"format": "int64"
},
"state": {
"description": "State is the infrastructure state of the machine.\n\nPossible enum values:\n - `\"Pending\"` means the Machine has been accepted by the system, but not yet completely started. This includes time before being bound to a MachinePool, as well as time spent setting up the Machine on that MachinePool.\n - `\"Running\"` means the machine is running on a MachinePool.\n - `\"Shutdown\"` means the machine is shut down.\n - `\"Terminated\"` means the machine has been permanently stopped and cannot be started.",
"description": "State is the infrastructure state of the machine.\n\nPossible enum values:\n - `\"Pending\"` means the Machine has been accepted by the system, but not yet completely started. This includes time before being bound to a MachinePool, as well as time spent setting up the Machine on that MachinePool.\n - `\"Running\"` means the machine is running on a MachinePool.\n - `\"Shutdown\"` means the machine is shut down.\n - `\"Terminated\"` means the machine has been permanently stopped and cannot be started.\n - `\"Terminating\"` means the machine that is terminating.",
"type": "string",
"enum": [
"Pending",
"Running",
"Shutdown",
"Terminated"
"Terminated",
"Terminating"
]
},
"volumes": {
Expand Down Expand Up @@ -66486,6 +66487,10 @@
"name": {
"description": "Name is the name of the network peering.",
"type": "string"
},
"state": {
"description": "State represents the network peering state",
"type": "string"
}
}
},
Expand Down
5 changes: 3 additions & 2 deletions gen/v3/apis__compute.ironcore.dev__v1alpha1_openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4706,13 +4706,14 @@
"format": "int64"
},
"state": {
"description": "State is the infrastructure state of the machine.\n\nPossible enum values:\n - `\"Pending\"` means the Machine has been accepted by the system, but not yet completely started. This includes time before being bound to a MachinePool, as well as time spent setting up the Machine on that MachinePool.\n - `\"Running\"` means the machine is running on a MachinePool.\n - `\"Shutdown\"` means the machine is shut down.\n - `\"Terminated\"` means the machine has been permanently stopped and cannot be started.",
"description": "State is the infrastructure state of the machine.\n\nPossible enum values:\n - `\"Pending\"` means the Machine has been accepted by the system, but not yet completely started. This includes time before being bound to a MachinePool, as well as time spent setting up the Machine on that MachinePool.\n - `\"Running\"` means the machine is running on a MachinePool.\n - `\"Shutdown\"` means the machine is shut down.\n - `\"Terminated\"` means the machine has been permanently stopped and cannot be started.\n - `\"Terminating\"` means the machine that is terminating.",
"type": "string",
"enum": [
"Pending",
"Running",
"Shutdown",
"Terminated"
"Terminated",
"Terminating"
]
},
"volumes": {
Expand Down
4 changes: 4 additions & 0 deletions gen/v3/apis__networking.ironcore.dev__v1alpha1_openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11910,6 +11910,10 @@
"description": "Name is the name of the network peering.",
"type": "string",
"default": ""
},
"state": {
"description": "State represents the network peering state",
"type": "string"
}
}
},
Expand Down