-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add placeholders for ProviderSpec and ProviderStatus
Fix some module imports. Will be cleaned up in future PRs.
- Loading branch information
1 parent
409fb46
commit 87d262f
Showing
11 changed files
with
294 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
Copyright The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1alpha4 | ||
|
||
// TODO: NOTE: The API details will be incrementally added and will eventually | ||
// conform to the CAPI Provider CAEP. | ||
|
||
// ProProviderSpec is the desired state of the Provider. | ||
type ProviderSpec struct{} | ||
|
||
// ProProviderStatus defines the observed state of the Provider. | ||
type ProviderStatus struct{} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
module sigs.k8s.io/cluster-api | ||
module sigs.k8s.io/cluster-api/operator | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/go-logr/logr v0.1.0 | ||
github.com/onsi/ginkgo v1.11.0 | ||
github.com/onsi/gomega v1.8.1 | ||
k8s.io/apimachinery v0.17.2 | ||
k8s.io/client-go v0.17.2 | ||
sigs.k8s.io/controller-runtime v0.5.0 | ||
github.com/onsi/ginkgo v1.12.1 | ||
github.com/onsi/gomega v1.10.1 | ||
k8s.io/apimachinery v0.17.9 | ||
k8s.io/client-go v0.17.9 | ||
sigs.k8s.io/cluster-api v0.3.13 | ||
sigs.k8s.io/controller-runtime v0.5.14 | ||
sigs.k8s.io/structured-merge-diff v1.0.1-0.20191108220359-b1b620dd3f06 // indirect | ||
) |
Oops, something went wrong.