Skip to content

Releases: cyberark/conjur-oss-suite-release

v0.0.1

17 Apr 16:40
9ffe498
Compare
Choose a tag to compare
v0.0.1 Pre-release
Pre-release

Release Notes

All notable changes to this project will be documented in this file.

[v0.0.1] - 2020-04-17

Table of Contents

Components

These are the components that combine to create this Conjur OSS Suite release and links
to their releases:

Installation Instructions for the Suite Release Version of Conjur

Installing the Suite Release Version of Conjur requires setting the container image tag. Below are more specific instructions depending on environment.

  • Docker or docker-compose

    Set the container image tag to cyberark/conjur:1.5.0.
    For example, make the following update to the conjur service in the quickstart docker-compose.yml

    image: cyberark/conjur:1.5.0
    
  • Cloud Formation templates for AWS

    Set the environment variable CONJUR_VERSION before building the AMI:

    export CONJUR_VERSION="1.5.0"
    ./build-ami.sh
    
  • Conjur OSS Helm chart

    Update the image.tag value and use the appropriate release of the helm chart:

    helm install ... \
      --set image.tag="1.5.0" \
      ...
      https://github.com/cyberark/conjur-oss-helm-chart/releases/download/v1.3.8/conjur-oss-1.3.8.tgz
    

Upgrade Instructions

Upgrade instructions are available for the following components:

Changes

The following are changes to the constituent components since the last Conjur
OSS Suite release:

cyberark/conjur

v1.4.6 (2020-01-21)

  • Changed
    • K8s hosts' application identity is extracted from annotations or id. If it is
      defined in annotations it will taken from there and if not, it will be taken
      from the id.

v1.4.7 (2020-03-12)

  • Changed
    • Improved flows and rules around user creation (#1272)
    • Kubernetes authenticator now returns 403 on unpermitted hosts instead of a 401 (#1283)
    • Conjur hosts can authenticate with authn-k8s from anywhere in the policy branch (#1189)
  • Fixed
    • Updated broken links on server status page (#1341)

v1.5.0 (2020-03-23)

  • Added
  • Changed
    • Lock rotators to prevent multiple rotations from incurring simultaneously.
  • Fixed
    • Fix support for using deployment as K8s authentication resource type for Kubernetes >= 1.16
      (#1440)

cyberark/conjur-oss-helm-chart

v1.3.8 (2019-12-20)

  • Added
    • Added basic instructions on how to package the chart
    • Added gitleaks config to repo
  • Changed
    • Updated deployments to be able to run on Kubernetes 1.16+
    • Updated e2e scripts to support newest helm (v.1.3.8)
  • Removed
    • Removed GitLab pipeline (it wasn't working anyways)

cyberark/conjur-google-cloud-marketplace

v1.2.0 (2018-12-06)

cyberark/conjur-cli

v6.1.0 (2018-04-09)

  • Added
    • Pin dependency 'conjur-api' to '~> 5.1'. This update adds authn-local support to the API. conjur-api PR #131

v6.2.1 (2019-05-22)

v6.2.2 (2020-04-02)

cyberark/conjur-api-go

v0.6.0 (2019-03-04)

  • Added
    • Converted to Golang 1.12
    • Started u...
Read more