github.com/alibaba/sealer@v0.8.6-0.20220430115802-37a2bdaa8173/docs/design/auto-build.md (about)

     1  # Auto-build
     2  
     3  Automatic cluster image build is to meet the needs of some users, Users need to build a specified version of kubernetes for automatic building.
     4  
     5  ## Quick start
     6  Standard directive:
     7  
     8  ```shell
     9  /imagebuild + version + arch
    10  ```
    11  
    12  `/imagebuild` : Trigger an automated build.
    13  
    14  `version` : Version corresponding to kubernetes.
    15  
    16  `arch`: Input version is AMD64 or arm64.
    17  
    18  Note: none of the three conditions is indispensable
    19  
    20  You don't need to pay attention to other operations. You just need to comment on the standard trigger instruction in the issue.
    21  
    22  Take the image of version 1.20.14 as an example.
    23  
    24  input:
    25  
    26  ```shell
    27  /imagebuild 1.20.14 amd64
    28  ```
    29  
    30  When `Image built successfully : kubernetes: version` appears in the comment area, it indicates that the image build is completed.
    31  
    32  Image name:
    33  
    34  ```shell
    35  kubernetes:v1.20.14
    36  ```
    37