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

feat: enrich kubectl get output #878

Merged
merged 1 commit into from
Jan 27, 2023
Merged

Commits on Jan 23, 2023

  1. feat: enrich kubectl get output

    by adding additional printer columns for number of desired workers, number of
    available workers, status, age, head Pod IP, and head Service IP.
    
    ## Before
    
    ```
    kubectl get rayclusters
    NAME         AGE
    dxia-test    53m
    keshi-test   2d23h
    ```
    
    ## After
    
    ```
    kubectl get rayclusters
    NAME         DESIRED WORKERS   AVAILABLE WORKERS   STATUS   AGE
    dxia-test    3                 4                   ready    60m
    keshi-test   1                 2                   ready    2d23h
    
    kubectl get rayclusters -o wide
    NAME         DESIRED WORKERS   AVAILABLE WORKERS   STATUS   AGE     HEAD POD IP    HEAD SERVICE IP
    dxia-test    3                 4                   ready    60m     10.169.4.130   10.160.217.214
    keshi-test   1                 2                   ready    2d23h   10.169.6.102   10.160.218.91
    ```
    davidxia committed Jan 23, 2023
    Configuration menu
    Copy the full SHA
    624df36 View commit details
    Browse the repository at this point in the history