Skip to content

Instantly share code, notes, and snippets.

@tardieu
Last active August 6, 2019 18:21
Show Gist options
  • Save tardieu/4859ea6e589b5ad77df1050149559d1e to your computer and use it in GitHub Desktop.
Save tardieu/4859ea6e589b5ad77df1050149559d1e to your computer and use it in GitHub Desktop.
SolSA Hello World Example
let { Bundle, ContainerizedService } = require('solsa')
let bundle = new Bundle()
bundle.service = new ContainerizedService({
name: 'hello-world',
image: 'docker.io/ibmcom/kn-helloworld',
port: 8080
})
bundle.ingress = new bundle.service.Ingress()
module.exports = bundle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment