github.com/GoogleContainerTools/skaffold/v2@v2.13.2/examples/jib-gradle/skaffold.yaml (about)

     1  apiVersion: skaffold/v4beta11
     2  kind: Config
     3  build:
     4    artifacts:
     5    - image: skaffold-jib-gradle
     6      jib: {}
     7  
     8  # optional profile to run the jib build on Google Cloud Build
     9  profiles:
    10    - name: gcb
    11      build:
    12        googleCloudBuild: {
    13          # gcb doesn't use the gradle wrapper in the application project to build, users need to provide a gradle image
    14          # that can run all tasks defined in build.gradle file as the default one provided by cloudBuilders might be too
    15          # old.
    16          gradleImage: gradle:7.5.1-jdk17-alpine@sha256:6b00b5e05d3d65e7a7b2efd68fdc08242407d83ba0387fa12ee9e8c09a4188d1
    17        }