Socket
Socket
Sign inDemoInstall

@container-stack/openssl

Package Overview
Dependencies
10
Maintainers
1
Versions
130
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @container-stack/openssl

Sample core for higher packages to depend on


Version published
Weekly downloads
11
decreased by-21.43%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

To run tests

`npm run test`

steps to enable helm tls

helm init --service-account tiller \
--tiller-namespace ns-1 --tiller-tls --tiller-tls-verify \
--tiller-tls-cert ./tiller.cert.pem \
--tiller-tls-key ./tiller.key.pem \
--tls-ca-cert ca.cert.pem

****************************************************************************************
helm init --tiller-namespace ns-2 --tiller-tls --tiller-tls-cert ./tiller.ns-2.cert.pem \
--tiller-tls-key ./tiller.ns-2.key.pem --tiller-tls-verify --tls-ca-cert ca.cert.pem \
--service-account tiller

****************************************************************************************
helm ls --tiller-namespace ns-1 --tls --tls-ca-cert ca.cert.pem --tls-cert helm.cert.pem --tls-key helm.key.pem

****************************************************************************************
****************************************************************************************
****************************************************************************************


openssl genrsa -out ./ca.key.pem 4096
openssl req -key ca.key.pem -new -x509 -days 7300 -sha256 -out ca.cert.pem -subj /CN=www.cdebase.com -extensions v3_ca

****************************************************************************************

openssl genrsa -out ./tiller.key.pem 4096 
openssl genrsa -out ./helm.key.pem 4096


openssl req -key tiller.key.pem -new -sha256 -out tiller.csr.pem  -subj /CN=www.cdebase.com/emailAddress=userid@cdebase.com
openssl req -key helm.key.pem -new -sha256 -out helm.csr.pem -subj /CN=www.cdebase.com/emailAddress=userid@cdebase.com

openssl x509 -req -CA ca.cert.pem -CAkey ca.key.pem -CAcreateserial -in tiller.csr.pem -out tiller.cert.pem -days 365
openssl x509 -req -CA ca.cert.pem -CAkey ca.key.pem -CAcreateserial -in helm.csr.pem -out helm.cert.pem  -days 365


****************************************************************************************


openssl genrsa -out ./tiller.ns-2.key.pem 4096 
openssl genrsa -out ./helm.ns-2.key.pem 4096


openssl req -key tiller.ns-2.key.pem -new -sha256 -out tiller.ns-2.csr.pem  -subj /CN=www.cdebase.com/emailAddress=ns-2@cdebase.com
openssl req -key helm.ns-2.key.pem -new -sha256 -out helm.ns-2.csr.pem -subj /CN=www.cdebase.com/emailAddress=ns-2@cdebase.com

openssl x509 -req -CA ca.cert.pem -CAkey ca.key.pem -CAcreateserial -in tiller.ns-2.csr.pem -out tiller.ns-2.cert.pem -days 365
openssl x509 -req -CA ca.cert.pem -CAkey ca.key.pem -CAcreateserial -in helm.ns-2.csr.pem -out helm.ns-2.cert.pem  -days 365

FAQs

Last updated on 27 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc