
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@keptn/keptn-ep-ssp-addon
Advanced tools
The Keptn Execution Plane Add-On for the Amazon Shared Services Platform enables platform administrators to install a keptn Execution Plane during the bootstrapping process of an EKS cluster.
Therefore, this Add-On installs the an Execution Plane Helm Chart and configures it to connect to your Keptn to your Keptn Control Plane
If you plan to use Secret Manager Secrets, you need to create a secret first.
Therefore:
The Add-On can be used by either specifying the name of a Secrets Manager secret or the API Token and Bridge password.
You can find informations how to get started with SSP Projects here.
Example Configuration (secrets in Secrets Manager):
import 'source-map-support/register';
import * as cdk from '@aws-cdk/core'
import * as keptnep from '@keptn/keptn-ep-ssp-addon'
import * as ssp from '@aws-quickstart/ssp-amazon-eks'
const app = new cdk.App();
const KeptnExecutionPlane = new keptnep.KeptnExecutionPlaneAddOn({
ssmSecretName: 'keptn-secrets',
controlPlaneHost: 'mykeptn.yourdomain.com',
})
const addOns: Array<ssp.ClusterAddOn> = [
KeptnExecutionPlane,
];
const account = '<aws-account-id>';
const region = '<aws-region>';
const props = { env: { account, region } };
new ssp.EksBlueprint(app, { id: '<aws-eks-cluster-name>', addOns}, props);
import 'source-map-support/register';
import * as cdk from '@aws-cdk/core'
import * as keptnep from '@keptn/keptn-ep-ssp-addon'
import * as ssp from '@aws-quickstart/ssp-amazon-eks'
const app = new cdk.App();
const KeptnExecutionPlane = new keptnep.KeptnControlPlaneAddOn({
apiToken: '<your-api-token>',
chartName: 'jmeter-service',
controlPlaneHost: 'mykeptn.yourdomain.com',
})
const addOns: Array<ssp.ClusterAddOn> = [
KeptnExecutionPlane,
];
const account = '<aws-account-id>';
const region = '<aws-region>';
const props = { env: { account, region } };
new ssp.EksBlueprint(app, { id: '<aws-eks-cluster-name>', addOns}, props);
Name | Type | Default | Description |
---|---|---|---|
ssmSecretName | string | The AWS Secrets Manager Secret which is containing the Keptn API Token (key: API_TOKEN) | |
apiToken | string | Keptn API Token is used to connect to the Keptn API, not needed if a ssmSecretName is specified | |
namespace | string | keptn | Namespace where the keptn Control Plane will be deployed |
helmrepo | string | https://storage.googleapis.com/keptn-installer | Helm Repository which will be used for installing Keptn |
version | string | 0.11.4 | The Version of Keptn which should get installed |
controlPlaneHost | string | Hostname of your Keptn Control Plane | |
chartName | string | helm-service | Name of the Execution Plane helm-chart |
You are welcome to use issues to report bugs or request enhancements.
FAQs
Keptn Execution Plane Addon for AWS SSP CDK Platform
The npm package @keptn/keptn-ep-ssp-addon receives a total of 0 weekly downloads. As such, @keptn/keptn-ep-ssp-addon popularity was classified as not popular.
We found that @keptn/keptn-ep-ssp-addon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.