From dda5d4778f754b4eb9e5f01601f96ee605791177 Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Thu, 22 Oct 2020 15:05:15 -0400 Subject: [PATCH] Release v0.0.16 - Add tags to template, not working - Add Check Admin User function, and add tests to verify - Added Display Name and Domain name to describe - errors: Fall back to full error message - cluster: Fail name check before calling API - aws: Check region after profile credentials have been validated - admin: Advise user to store password securely - addressing vkareh review - Fix idp name generation - Adressing code review items - describe-cluster: Display Provision Shard if available - openid: Always show help text for claims - users: Do not show cluster-admin user - ccs: Ensure CCS is enabled before asking to disable SCP checks - edit-cluster: Fallback to interactive mode - aws: Default to free AMI --- CHANGES.adoc | 19 +++++++++++++++++++ assets/bindata.go | 3 ++- pkg/info/info.go | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGES.adoc b/CHANGES.adoc index 0eaa18dda9..5c66f0cda3 100644 --- a/CHANGES.adoc +++ b/CHANGES.adoc @@ -3,6 +3,25 @@ This document describes the relevant changes between releases of the `moactl` command line tool. +== 0.0.16 Oct 22 2020 + +- Add tags to template, not working +- Add Check Admin User function, and add tests to verify +- Added Display Name and Domain name to describe +- errors: Fall back to full error message +- cluster: Fail name check before calling API +- aws: Check region after profile credentials have been validated +- admin: Advise user to store password securely +- addressing vkareh review +- Fix idp name generation +- Adressing code review items +- describe-cluster: Display Provision Shard if available +- openid: Always show help text for claims +- users: Do not show cluster-admin user +- ccs: Ensure CCS is enabled before asking to disable SCP checks +- edit-cluster: Fallback to interactive mode +- aws: Default to free AMI + == 0.0.15 Oct 15 2020 - init: Ensure osdCcsAdmin exists before attempting cluster dry-run - github: Provide guidance on using GitHub organizations when creating IdP diff --git a/assets/bindata.go b/assets/bindata.go index eb45d1bcc6..5b51028dfc 100644 --- a/assets/bindata.go +++ b/assets/bindata.go @@ -62,7 +62,8 @@ var _templatesCloudformationIam_user_osdccsadminJson = []byte(`{ "ManagedPolicyArns": [ "arn:aws:iam::aws:policy/AdministratorAccess" ], - "UserName": "osdCcsAdmin" + "UserName": "osdCcsAdmin", + "Tags" : [{"Key": "MOA", "Value": "true"}] } }, "osdCcsAdminAccessKeys": { diff --git a/pkg/info/info.go b/pkg/info/info.go index b01d134376..e2b1cdb550 100644 --- a/pkg/info/info.go +++ b/pkg/info/info.go @@ -18,4 +18,4 @@ limitations under the License. package info -const Version = "0.0.15" +const Version = "0.0.16"