...

Text file src/edge-infra.dev/config/pallets/sds/display/justfile

Documentation: edge-infra.dev/config/pallets/sds/display

     1just := "just --justfile=" + justfile_directory() + "/../../../../justfile"
     2
     3# default rule, lists available rules
     4default: list
     5
     6# list available rules
     7list:
     8  @just --list --list-prefix ' -- '
     9
    10# run all display controller-gen rules
    11update: gen-code update-manifests
    12  {{just}} gazelle
    13
    14# update display types generated code
    15gen-code:
    16  {{just}} run pkg/sds/display/k8s/apis:gen_code
    17
    18# update display generated manifests
    19update-manifests: gen-crds gen-rbac
    20  {{just}} fmt-manifests
    21
    22# update display CRD manifests
    23gen-crds:
    24  {{just}} run config/pallets/sds/display:gen_display_crds 
    25  {{just}} run test:gen_display_crds
    26
    27# update display RBAC manifests
    28gen-rbac:
    29  {{just}} run config/pallets/sds/display:gen_xserver_rbac 
    30  {{just}} run config/pallets/sds/display:gen_displayctl_rbac 

View as plain text