Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@blitzm/aws-kubernetes
Advanced tools
@blitzm/aws-kubernetes is a typescript library for simplifying the process of creating an EKS cluster with a single managed node groups. It abstracts the complicated configurations to provider a simple input interface for Blitzm developers to deploy resou
@blitzm/aws-kubernetes is a typescript library for simplifying the process of creating an EKS cluster with a single managed node groups. It abstracts the complicated configurations to provider a simple input interface for Blitzm developers to deploy resources to the cloud platform with little or no domain knowledge of the provider.
This package can be installed using npm
npm install --save --save-exact @blitzm/aws-kubernetes
import { AWSKubernetes } from '@blitzm/aws-kubernetes'
// use all the default configurations(The nginx ingress and the cert manager are also enable )
const cluster = new AWSKubernetes("my-project");
// create the cluster with custom spec
const cluster = new AWSKubernetes("my-project", {
nodeSize: "t2.medium",
maxNodes: 3,
minNodes: 2,
nginxIngress: {
enabled: true,
}
});
// The returned `cluster` has the following objects so you can export them, cooperate with other cloud libs or create your own resources in the cluster.
export const kubeconfig = cluster.kubeconfig;
export const ingressPublicDNS = cluster.ingressPublicDNS;
export const vpc = cluster.vpc
export const provider = cluster.provider
export const clusterRole = cluster.nodeRole
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
FAQs
@blitzm/aws-kubernetes is a typescript library for simplifying the process of creating an EKS cluster with a single managed node groups. It abstracts the complicated configurations to provider a simple input interface for Blitzm developers to deploy resou
The npm package @blitzm/aws-kubernetes receives a total of 0 weekly downloads. As such, @blitzm/aws-kubernetes popularity was classified as not popular.
We found that @blitzm/aws-kubernetes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.