Skip to content
This repository was archived by the owner on Dec 9, 2024. It is now read-only.

Commit 53d3fe6

Browse files
authored
Merge pull request #113 from andresmgot/tls
Avoid SSL without certificate-authority
2 parents 34e926a + 970c1f9 commit 53d3fe6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/helpers.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ function getConnectionOptions(config, modif) {
137137
} else {
138138
// No certificate-authority found
139139
connectionOptions.insecureSkipTlsVerify = true;
140+
connectionOptions.strictSSL = false;
140141
}
141142
// Config authentication
142143
const token = getToken(userInfo);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "serverless-kubeless",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "This plugin enables support for Kubeless within the [Serverless Framework](https://github.com/serverless).",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)