Skip to content
This repository was archived by the owner on Feb 24, 2021. It is now read-only.

feat: Add security-bootstrap-redis service #334

Conversation

andresrinivasan
Copy link
Member

Signed-off-by: André Srinivasan [email protected]

PR Checklist

Please check if your PR fulfills the following requirements:

  • Tests for the changes have been added (for bug fixes / features)
  • Docs have been added / updated (for bug fixes / features)

If your build fails due to your commit message not passing the build checks, please review the guidelines here: https://github.com/edgexfoundry/developer-scripts/blob/master/.github/Contributing.md.

What is the current behavior?

Issue Number:

Resolves #332

What is the new behavior?

Add new security-bootstrap-redis service

Does this PR introduce a breaking change?

  • Yes
  • No

This PR is dependent on actually adding the service to edgex-go. See edgex-go issue #2503

Specific Instructions

Other information

I'm creating this PR for the purposes of review. Please do not merge yet.

Copy link
Collaborator

@bnevis-i bnevis-i left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Every database-consuming service needs to take a dependency on security-bootstrap-database. This new dependency needs to be added into add-security.yml. Otherwise there is no forcing function by any downstream service to ensure that the bootstrap is run.

@bnevis-i
Copy link
Collaborator

P.S. I've gotten into using git commit --fixup 572e5274509c0a81320af52d6ca236e946dfca4d -s -S so that when the time comes I can do a git rebase -i --autosquash without then having to go fixup the commit message.

@@ -0,0 +1,552 @@
# * Copyright 2020 Intel Corporation.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you mean to added the file to the PR?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies. Removed and added this file to .gitignore.

@lenny-goodell
Copy link
Member

Every database-consuming service needs to take a dependency on security-bootstrap-database. This new dependency needs to be added into add-security.yml. Otherwise there is no forcing function by any downstream service to ensure that the bootstrap is run.

@bnevis-i , good catch!

@andresrinivasan
Copy link
Member Author

Latest push addresses issues raised in comments.

Copy link
Member

@lenny-goodell lenny-goodell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, but can not merge until edgex-go PR merged and image for service is being produced in nexus.

@andresrinivasan andresrinivasan force-pushed the issue-332-add-security-bootstrap-service branch from fe1c964 to 97cf0b8 Compare October 27, 2020 17:03
@andresrinivasan
Copy link
Member Author

Squashed

@lenny-goodell
Copy link
Member

@andresrinivasan, My compose-builder refactoring PR has been merged. Please rebase yours.

@andresrinivasan andresrinivasan force-pushed the issue-332-add-security-bootstrap-service branch from 97cf0b8 to 8cf134d Compare October 27, 2020 22:00
Comment on lines 248 to 250
database:
env_file:
- database-security.env
command: |
/bin/sh -c "
until [ -r $${REDIS5_PASSWORD_PATHNAME} ] && [ -s $${REDIS5_PASSWORD_PATHNAME} ]; do sleep 1; done
exec /usr/local/bin/docker-entrypoint.sh --requirepass `cat $${REDIS5_PASSWORD_PATHNAME}` \
--dir /data \
--save 900 1 \
--save 300 10 \
--save 60 10000
"
volumes:
- /tmp/edgex/secrets/edgex-redis:/tmp/edgex/secrets/edgex-redis:z
depends_on:
- vault-worker
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this database section at all. Only thin left is the depends_on which doesn't seem to be needed.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree with lenny. redis-bootstrap needs to depend on database and vault-worker. This can go.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@lenny-goodell
Copy link
Member

@andresrinivasan , one more rebase needed for my pin versions PR. Last one for me for a bit.... ;-)

@andresrinivasan andresrinivasan force-pushed the issue-332-add-security-bootstrap-service branch from 8cf134d to 66591ae Compare October 27, 2020 22:39
Copy link
Member

@lenny-goodell lenny-goodell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, but can't merge until docker image is being created in Nexus.

@lenny-goodell
Copy link
Member

@andresrinivasan , you also need to add the SECRETSTORE_TOKENFILE: /tmp/edgex/secrets/edgex-security-bootstrap-redis/secrets-token.json env override. I have tested that this with the name changes (see slack) all works.

@andresrinivasan andresrinivasan force-pushed the issue-332-add-security-bootstrap-service branch from 76ed8b6 to 75998a5 Compare October 29, 2020 01:40
@andresrinivasan
Copy link
Member Author

@andresrinivasan , you also need to add the SECRETSTORE_TOKENFILE: /tmp/edgex/secrets/edgex-security-bootstrap-redis/secrets-token.json env override. I have tested that this with the name changes (see slack) all works.

Done

@@ -68,11 +68,9 @@ services:
- security-secrets-setup

security-secrets-setup:
image: ${CORE_EDGEX_REPOSITORY}/docker-edgex-secrets-setup-go${ARCH}:${CORE_EDGEX_VERSION}${DEV}
image: ${CORE_EDGEX_REPOSITORY}/docker-secrets-setup-go${ARCH}:${CORE_EDGEX_VERSION}${DEV}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost, but missing security in the name. Needs to be docker-security-secrets-setup-go

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@andresrinivasan andresrinivasan force-pushed the issue-332-add-security-bootstrap-service branch from 75998a5 to 0af12d2 Compare October 29, 2020 16:14
Copy link
Member

@lenny-goodell lenny-goodell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please run make build on your latest changes.

@andresrinivasan andresrinivasan force-pushed the issue-332-add-security-bootstrap-service branch from 0af12d2 to 98b7d27 Compare October 29, 2020 17:46
@@ -196,7 +215,7 @@ services:
- kong-migrations

edgex-proxy:
image: ${CORE_EDGEX_REPOSITORY}/docker-edgex-security-proxy-setup-go${ARCH}:${CORE_EDGEX_VERSION}${DEV}
image: ${CORE_EDGEX_REPOSITORY}/docker-security-security-proxy-setup-go${ARCH}:${CORE_EDGEX_VERSION}${DEV}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong name. Extra security. Change to docker-security-proxy-setup-go

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@andresrinivasan andresrinivasan force-pushed the issue-332-add-security-bootstrap-service branch from 98b7d27 to dda617f Compare October 29, 2020 19:22
@lenny-goodell lenny-goodell merged commit 5674044 into edgexfoundry:master Oct 29, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add new security-bootstrap-redis service
3 participants