Skip to content

Releases: cloud-native-toolkit/image-cli-tools-core

v1.1.0

Choose a tag to compare

@seansund seansund released this 16 Jul 06:11
d65a7fc

What's changed

Adds igc, gitu, kubeseal, argocd, and kustomize clis to the image

Full Changelog: v1.0.3...v1.1.0

v1.0.4

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 16 Jul 06:09
d65a7fc
  • No changes

v1.0.3

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 15 Jul 19:45
2eecb05

Bug Fixes

  • Removes the VOLUME instruction to fix permission issue @seansund (#8)

v1.0.2

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 08 Jul 00:06
cb4d4e9

Maintenance

v1.0.1

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 07 Jul 22:42
03e83fd

Maintenance

v1.0.0

Choose a tag to compare

@seansund seansund released this 07 Jul 19:12
308ecd4

What's changed

This release dramatically restructures the way the image source files are managed. The various branches created to support the different terraform versions have been collapsed into one main branch and the choice of terraform version is managed as a build argument. Additionally, support for Fedora-based images has been added.

To support this change, the workflow that builds the container image has been overhauled to include a matrix to build the various images from a single branch.

jobs:
  build:
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        base:
          - alpine
          - fedora
        terraform:
          - v1.0
          - v1.1
          - v1.2

    env:
      TERRAFORM_LATEST: "v1.2"

This change makes it much easier to maintain changes to the images. Ideally, the only real difference between the image in the v1.1 branch and the v1.2 branch should have been the version of terraform used. All other changes should have been synchronized. BUT, that required a lot of manual work that we often didn't do. It also meant the version numbers between the branches didn't coincide with one another.

Full Changelog: v1.1-v0.2.0...v1.0.0

terraform v1.1: v0.2.0

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 07 Jul 15:25
f812187

Features

terraform v1.1: v0.1.2

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 01 Jul 18:57
8f7bdbb
  • Updated TF_CLI_ARGS for apply command only @triceam (#2)

terraform v1.1: v0.1.1

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 30 Jun 16:23
8b49500
  • added TF_CLI_ARGS parallelism default value @triceam (#1)

terraform v1.1: v0.1.0

Choose a tag to compare

@cloudnativetoolkit cloudnativetoolkit released this 21 Jun 12:54
0112b27
  • No changes