Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add additional printer columns for ResourceGroup CRD (#38)
This commit adds additional printer columns to the ResourceGroup instance CRDs, which will be displayed when listing ResourceGroup instances using `kubectl get` command. The additional columns are: - `State`: The current state of the ResourceGroup instance. Found in `.status.state` - Synced: Whether all subresources of the ResourceGroup are ready. Found in `status.conditions[?(@.type==\"InstanceSynced\")].status` - Age: The age of the ResourceGroup instance. Found in `.metadata.creationTimestamp` Sample kubectl output: ```bash ➜ ~ k get eksclusters NAME STATE SYNCED AGE testcluster29 ACTIVE True 22d ``` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
- Loading branch information