Golang Example
Create a file called main.go with the content below:
package main
import "fmt"
func main() {
fmt.Println("Hello World!")
}Build it:
$ GOOS=linux go build main.goPackage and deploy:
$ ops run mainFor more examples using Golang, visit our examples repository.
PHP Example
Create a file called ex.php with the content below:
<?php
phpinfo();
?>Package and deploy:
$ ops pkg load php_7.2.13 -a ex.phpNodeJS Example
Create a file called ex.js with the content below:
console.log("Hello World!");Package and deploy:
$ ops pkg load node_v14.2.0 -a ex.jsYou should see "Hello World!" printed on your screen and then the ops command exits. For more examples using NodeJS, visit our examples repository.
This can be done via the configuration file but if you want to dynamically inject without having to rely on the configuration file this is the way:
package main
import (
"fmt"
"os"
"strings"
)
func main() {
fmt.Println("FOO:", os.Getenv("FOO"))
fmt.Println("BAR:", os.Getenv("BAR"))
fmt.Println()
for _, e := range os.Environ() {
pair := strings.SplitN(e, "=", 2)
fmt.Println(pair[0])
}
}$ GOOS=linux go build
$ ops run -e FOO=1 teaWhile both of these commands are used to execute code, there is a big
difference when you would choose to run one rather than the other. For ops run, you would use this command to run compiled code (executable machine
code). So, for example, any golang code that you may run, you would use this
command. Any code that is compiled at runtime, you would use ops pkg load.
Example of languages where you would use this are NodeJS or PHP. Each supported
language for ops pkg load, will have a corresponding package. To see a list of
available packages, run ops pkg list.
Right now we have two release channels. If you run ops as is you are tracking the main release channel. There is no update frequency associated with it just whenever we deem significant work has been done and we are not horribly breaking anything.
The other channel you can track is the nightly channel. This is populated every night via the build system with whatever is in master. So if you want bleeding edge you can utilize that.
The magic incantation for tracking this channel is simply to switch the
-n or --nightly flag on.
For example:
$ ops -n run mainIf there are already cached images you can use the --force or -f flag to
replace them with the lastest images from a given channel. For example, the
following command will both track the nightly channel and replace any cached
images with the lastest from that channel:
$ ops -nf run main