New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cdk8s-plus

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cdk8s-plus - npm Package Compare versions

Comparing version 0.25.0-pre.38c9c257c6c9a64720e955cbf9e1c58de2a7cb2e to 0.25.0-pre.d863232e4bf8a6dfcdd11e32b18b03586a4b766d

10

package.json

@@ -33,3 +33,3 @@ {

"constructs": "2.0.1",
"cdk8s": "0.25.0-pre.38c9c257c6c9a64720e955cbf9e1c58de2a7cb2e",
"cdk8s": "0.25.0-pre.d863232e4bf8a6dfcdd11e32b18b03586a4b766d",
"@types/minimatch": "^3.0.3",

@@ -41,3 +41,3 @@ "projen": "^0.2.2",

"jsii-pacmak": "^1.6.0",
"jsii-release": "^0.1.6",
"jsii-release": "^0.1.7",
"@types/node": "^10.17.0",

@@ -59,7 +59,7 @@ "typescript": "^3.8.3",

"constructs": "^2.0.1",
"cdk8s": "0.25.0-pre.38c9c257c6c9a64720e955cbf9e1c58de2a7cb2e"
"cdk8s": "0.25.0-pre.d863232e4bf8a6dfcdd11e32b18b03586a4b766d"
},
"dependencies": {
"minimatch": "^3.0.4",
"cdk8s": "0.25.0-pre.38c9c257c6c9a64720e955cbf9e1c58de2a7cb2e"
"cdk8s": "0.25.0-pre.d863232e4bf8a6dfcdd11e32b18b03586a4b766d"
},

@@ -73,3 +73,3 @@ "bundledDependencies": [

"license": "Apache-2.0",
"version": "0.25.0-pre.38c9c257c6c9a64720e955cbf9e1c58de2a7cb2e",
"version": "0.25.0-pre.d863232e4bf8a6dfcdd11e32b18b03586a4b766d",
"types": "lib/index.d.ts",

@@ -76,0 +76,0 @@ "stability": "experimental",

@@ -54,3 +54,3 @@ # cdk8s+ (cdk8s-plus)

const deployment = new kplus.Deployment(chart, 'Deployment', {
spec: new kplus.DeploymentSpec({
spec: {
replicas: 3,

@@ -60,3 +60,3 @@ podSpecTemplate: {

}
}),
},
});

@@ -276,5 +276,5 @@

// let's define a job spec, and set a 1 second TTL.
const jobSpec = new kplus.JobSpec({
const jobSpec = {
ttlAfterFinished: kplus.Duration.seconds(1),
});
};

@@ -352,7 +352,7 @@ // now add a container to all the pods created by this job

new kplus.Deployment(chart, 'FrontEnds', {
spec: new kplus.DeploymentSpec({
spec: {
podSpecTemplate: {
containers: [ new kplus.Container({ image: 'node' }) ],
}
}),
},
});

@@ -359,0 +359,0 @@ ```

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc