-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MOSIP-23969] Added Dockerfile for openssl certiicate creation for regclient #38
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: bhumi46 <[email protected]>
Signed-off-by: bhumi46 <[email protected]>
Signed-off-by: bhumi46 <[email protected]>
Signed-off-by: bhumi46 <[email protected]>
Signed-off-by: bhumi46 <[email protected]>
@@ -0,0 +1,19 @@ | |||
[req] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
get content approved by @Mahesh-Binayak
openssl-regclient-1.1.1/README.md
Outdated
@@ -0,0 +1,75 @@ | |||
## Certificate Generation Docker Image | |||
## Overview | |||
This repository provides a Docker image and Kubernetes Job configuration for generating test certificates and secrets. It uses OpenSSL to create a Root CA certificate and a Client certificate, and then packages these into a ConfigMap and Secret for use in Kubernetes applications. This is intended for development and testing purposes only. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
update overview
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated over view
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
regclient-openssl.cnf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
generate-signing-certs.sh
openssl-regclient-1.1.1/Dockerfile
Outdated
apt-get install -y openssl sudo curl && \ | ||
groupadd -g ${container_user_gid} ${container_user_group} && \ | ||
useradd -u ${container_user_uid} -g ${container_user_group} -s /bin/sh -m ${container_user} && \ | ||
echo "${container_user} ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
get it verified by @Mahesh-Binayak
Signed-off-by: bhumi46 <[email protected]>
added docker file openssl creation for regclient