Skip to content

Latest commit

 

History

History
217 lines (159 loc) · 5.04 KB

APPLY.md

File metadata and controls

217 lines (159 loc) · 5.04 KB

Using mink apply and mink resolve

Starting in the 0.19 release of mink, we will have a new feature based around the user experience of ko.

Suppose my repository is laid out like:

  foo/
    Dockerfile
    main.js
  bar/
    main.go
  baz/
    main.ru
    project.toml
  config/
    lots-of.yaml

I would like to build, containerize and deploy all of this with a simple: mink apply.

Authoring configs for mink apply

In the ko-style of development, instead of referencing images, config files reference Go-importpaths:

  image: ko:https://github.com/mattmoor/mink/foo/bar

mink apply adopts a similar strategy, where image URIs are prefixed with a scheme that correlates with the build mode, following the above structure you would use something like:

  image: dockerfile:https:///foo
  image: ko:https://bar
  image: buildpacks:https:///baz

Note: currently dockerfile/buildpacks requires triple-slashes for file:https:///-style URIs

How this works

mink will upload a single "bundle" of the entire repository (guided by --directory for the "root", for more see Complex directory structures). It will then pass this bundle to all of the different builds (see detailed sections).

As each build completes, the resulting image digest is substituted into the source yaml. For apply this is piped to kubectl apply, and for resolve this is printed to stdout (for more, see What about releases?).

ko:https:// semantics

The semantics of ko:https://a/b/c are equivalent to that of github.com/google/ko.

This build may be reproduced with:

ko publish --bare a/b/c

dockerfile:https:/// semantics

dockerfile:https:///a/b/c will trigger a Dockerfile build within the uploaded context with a/b/c/Dockerfile. If --dockerfile=Dockerfile.blah is passed then the build will use a/b/c/Dockerfile.blah. There is not currently a way to scope the build context differently or supply different Dockerfile names per build target.

This build may be reproduced with:

mink build --dockerfile=a/b/c/Dockerfile

buildpack:https:/// semantics

buildpack:https:///a/b/c will trigger a buildpack build within the uploaded context with the project descriptor (aka project.toml) loaded via a/b/c/project.toml. If --descriptor=blah.toml is passed then the build will use a/b/c/blah.toml for the project descriptor. There is not currently a way to scope the build context differently or supply different --descriptor per build target.

This build may be reproduced with:

mink buildpack --descriptor=a/b/c/blah.toml

Example using project.toml to select the Go package to build:

[[build.env]]
name = "BP_GO_TARGETS"
value = "./cmd/foo"

Example using project.toml to specify the GCP function to target:

[[build.env]]
name = "GOOGLE_FUNCTION_TARGET"
value = "bar"

task:https:// semantics

task:https://my-task?a=b&c=d will trigger a task run equivalent to:

mink run task my-task -- --a=b --c=d

The task is REQUIRED to surface the following special parameters and results:

  • dev.mink.images.target param
  • dev.mink.sources.bundle param
  • dev.mink.images.digest result

For more information on mink run task, see here.

pipeline:https:// semantics

pipeline:https://my-pipeline?a=b&c=d will trigger a pipeline run equivalent to:

mink run pipeline my-pipeline -- --a=b --c=d

The pipeline is REQUIRED to surface the following special parameters and results:

  • dev.mink.images.target param
  • dev.mink.sources.bundle param
  • dev.mink.images.digest result

For more information on mink run pipeline, see here.

What about releases?

Similar to ko, this can be used to produce releases as well via mink resolve:

mink resolve -f config > release.yaml

This will produce a version of the input yaml with image references substituted in their digest form.

Advanced configuration

Unlike ko, mink's style of configuration allows projects to drop the -f path/to/config! In the root of your repo, simply add the filenames to your .mink.yaml configuration:

filename:
  - ./path/to/my/config
  - ./another/path/to/some/config

Then folks can just type mink apply.

Note: Currently there is no way to pass configuration options for individual builds (e.g. different buildpack builder per build)

Complex directory structures

Suppose we have complex directory structure:

  deep/
    deeper/
      deepest/
        foo/
          Dockerfile
          main.js
        bar/
          main.go
      baz/
        main.ru
	project.toml
    config/
      lots-of.yaml

If you supply the command: mink apply -f deep/config --directory=deep/deeper, then the bundle uploaded will contain:

  deepest/
    foo/
      Dockerfile
      main.js
    bar/
      main.go
  baz/
    main.ru
    project.toml

So the config references should take this into account and use:

  image: dockerfile:https:///deepest/foo
  image: ko:https://deepest/bar
  image: buildpacks:https:///baz