Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/iits-consulting/helm-charts-manager
A command line tool to easily lint, plan and deploy multiple helm charts.
helm-charts-manager lint [options]
: Run helm charts manager in linting mode to check charts for errors and bad practices.helm-charts-manager plan [options]
: Run helm charts manager in planning mode to see the difference between existing deployment and current charts.helm-charts-manager apply [options]
: Run helm charts manager in deployment mode to deploy the charts. Apply always plans first and has to be approved before deploying. This behaviour can be overriden with --auto-approve
option.-h | --help
: Shows the help screen.-v | --version
: Shows version string.--config-file <configFile>
: Path to the configuration YAML file for helm-charts-manager. Defaults to ./helm-charts-manager-config.yaml
--charts-path <chartsPath>
: Path to the base directory where helm charts are stored. Defaults to ./
--charts <charts>
: List of chart names separated with a comma to select the charts to be lined/planned/deployed. Defaults to the list of chart names in the configuration YAML.--auto-approve
: Overrides the deployment y/n query. Useful for automated deployment via CI/CD pipelies.--update
: Update and repackage the charts before linting/planning/deploying.--debug
: Enable debug printouts for every command executed.Please see /example/helm-charts-manager-config.yaml
Important: STAGE
and RELEASE_VERSION
environment variables are mandatory.
It is possible to specify multiple stages in the same configuration file. STAGE
environment variable serves as a selector between different stages.
First download and install minikube and helm. Start a local kubernetes cluster with:
minikube start
Then download all files from the example
directory in repository and execute the following commands:
cd example
helm repo add bitnami https://charts.bitnami.com/bitnami
helm-charts-manager apply --update
You should see the following output:
The charts for nginx and kubernetes-dashboard are installed on our minikube cluster.
If we want to override some values we need to configure the helm-charts-manager-config.yaml file.
Open helm-charts-manager-config.yaml and add in line 22 at the end "--set kubernetes-dashboard.service.type=NodePort".
Now apply the changes with this command:
helm-charts-manager apply --charts kubernetes-dashboard
You should see this output
As you can see helm-charts manager just updated our kubernetes-dashboard chart.
FAQs
Unknown package
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.