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: 4 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-13T16:41:16.000Z (6 months ago)
- Last Synced: 2025-07-19T14:23:08.896Z (4 months ago)
- Topics: k8s-sig-multicluster
- Language: Go
- Homepage:
- Size: 237 KB
- Stars: 34
- Watchers: 6
- Forks: 12
- Open Issues: 4
-
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 support
Learn 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 ./...