Skip to content

Commit

Permalink
added runtimes.json
Browse files Browse the repository at this point in the history
  • Loading branch information
msciabarra committed Sep 16, 2023
1 parent 1d5fc81 commit a9bda5b
Show file tree
Hide file tree
Showing 2 changed files with 245 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,3 @@ bin/*/LICENSE
.test_fail_then_succeed
cookie.txt
actions.zip
runtimes.json
245 changes: 245 additions & 0 deletions runtimes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,245 @@
{
"runtimes": {
"dotnet": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-dotnet-v2.2",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "dotnet:2.2",
"requireMain": true
},
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": false,
"deprecated": false,
"image": {
"name": "action-dotnet-v3.1",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "dotnet:3.1",
"requireMain": true
}
],
"go": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-golang-v1.17",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "go:1.17"
},
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": false,
"deprecated": false,
"image": {
"name": "go-nuvolaris-metaflow",
"prefix": "ghcr.io/nuvolaris",
"tag": "bc86ab6"
},
"kind": "go:1.20mf"
}
],
"java": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-java-v8",
"prefix": "ghcr.io/nuvolaris",
"tag": "0.3.0-morpheus.22110809"
},
"kind": "java:8",
"requireMain": true
}
],
"nodejs": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-nodejs-v18",
"prefix": "ghcr.io/nuvolaris",
"tag": "3.0.0-beta.2309081459"
},
"kind": "nodejs:18",
"stemCells": [
{
"initialCount": 1,
"memory": "256 MB",
"reactive": {
"increment": 1,
"maxCount": 4,
"minCount": 1,
"threshold": 1,
"ttl": "2 minutes"
}
}
]
},
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": false,
"deprecated": false,
"image": {
"name": "action-nodejs-v16",
"prefix": "ghcr.io/nuvolaris",
"tag": "3.0.0-beta.2309081459"
},
"kind": "nodejs:16"
}
],
"php": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": false,
"deprecated": false,
"image": {
"name": "action-php-v7.3",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "php:7.3"
},
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-php-v7.4",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "php:7.4"
},
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": false,
"deprecated": false,
"image": {
"name": "action-php-v8.0",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "php:8.0"
}
],
"python": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-python-v311",
"prefix": "ghcr.io/nuvolaris",
"tag": "3.0.0-beta.2309081459"
},
"kind": "python:3",
"stemCells": [
{
"initialCount": 1,
"memory": "256 MB",
"reactive": {
"increment": 1,
"maxCount": 4,
"minCount": 1,
"threshold": 1,
"ttl": "2 minutes"
}
}
]
},
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": false,
"deprecated": false,
"image": {
"name": "action-python-v310",
"prefix": "ghcr.io/nuvolaris",
"tag": "3.0.0-beta.2309081459"
},
"kind": "python:310"
}
],
"ruby": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-ruby-v2.5",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "ruby:2.5"
}
],
"rust": [
{
"attached": {
"attachmentName": "codefile",
"attachmentType": "text/plain"
},
"default": true,
"deprecated": false,
"image": {
"name": "action-rust-v1.34",
"prefix": "openwhisk",
"tag": "nightly"
},
"kind": "rust:1.34"
}
]
}
}

0 comments on commit a9bda5b

Please sign in to comment.