Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kubernetes-sigs/about-api
A CRD for arbitrary properties about a cluster
https://github.com/kubernetes-sigs/about-api
k8s-sig-multicluster
Last synced: about 2 months ago
JSON representation
A CRD for arbitrary properties about a cluster
- Host: GitHub
- URL: https://github.com/kubernetes-sigs/about-api
- Owner: kubernetes-sigs
- License: apache-2.0
- Created: 2021-04-06T02:30:52.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-23T23:18:56.000Z (7 months ago)
- Last Synced: 2024-08-08T18:21:43.510Z (5 months ago)
- Topics: k8s-sig-multicluster
- Language: Go
- Homepage:
- Size: 111 KB
- Stars: 29
- Watchers: 7
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-starred - kubernetes-sigs/about-api - A CRD for arbitrary properties about a cluster (others)
README
# about-api
A CRD for arbitrary properties about a cluster.
## Community, discussion, contribution, and supportLearn how to engage with the Kubernetes community on the [community page](http://kubernetes.io/community/).
You can reach the maintainers of this project at:
- [Slack](https://kubernetes.slack.com/messages/sig-multicluster)
- [Mailing List](https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster)### Code of conduct
Participation in the Kubernetes community is governed by the [Kubernetes Code of Conduct](code-of-conduct.md).
### Run controller on the Cluster.
In order to build and run tests you would need access to an existing miniKube or kubernetes cluster.
Set the environment variable `TEST_USE_EXISTING_CLUSTER` to `true`export TEST_USE_EXISTING_CLUSTER=true
Build and push your image to the location specified by IMG:
make docker-build docker-push IMG=/:tag
Deploy the controller to the cluster with image specified by IMG:
make deploy IMG=/:tag
### Run tests.
In order to run tests you would need access to an existing miniKube or kubernetes cluster.
Set the environment variable `TEST_USE_EXISTING_CLUSTER` to `true`export TEST_USE_EXISTING_CLUSTER=true
go test ./...