Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Reference base path (change category/api to reference/api) #52

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions docs/reference/api/_category_.json

This file was deleted.

3 changes: 3 additions & 0 deletions docs/reference/api/api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: "API"
---
7 changes: 0 additions & 7 deletions docs/reference/cli/_category_.json

This file was deleted.

3 changes: 3 additions & 0 deletions docs/reference/cli/cli.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: "CLI"
---
7 changes: 0 additions & 7 deletions docs/reference/installation/_category_.json

This file was deleted.

3 changes: 3 additions & 0 deletions docs/reference/installation/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: "Installation"
---
7 changes: 0 additions & 7 deletions docs/usage/_category_.json

This file was deleted.

7 changes: 0 additions & 7 deletions docs/usage/examples/_category_.json

This file was deleted.

3 changes: 3 additions & 0 deletions docs/usage/examples/examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
title: "Examples"
---
6 changes: 1 addition & 5 deletions docs/usage/plugins/tutorials/_category_.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
"position": 2,
"link": {
"type": "generated-index",
"description": "A Vela cluster is deployed as a self-hosted solution and consists of two core services, the server and the worker. The relationship between these services is considered many-to-many meaning many workers can connect to many servers.

The server is considered the brains of the application while the worker is considered the brawn of the application.

An optional third service, the UI, can also be deployed but is not required for the Vela platform to operate as intended. This service provides a means for utilizing and interacting with the Vela platform."
"description": "An example of these tutorials exist in our go-vela/vela-tutorials repository. We recommend reviewing Docker's best practices before attempting to create a custom plugin. We recommend that all plugins be placed inside a scratch image."
}
}
1 change: 0 additions & 1 deletion docs/usage/plugins/tutorials/bash.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: "Bash"
sidebar_position: 1
---

:::warning
Expand Down
145 changes: 145 additions & 0 deletions docs/usage/plugins/tutorials/go.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
---
title: "Go"
---

:::warning
We recommend reviewing [Docker's best practices](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/) before attempting to create a custom plugin.

We recommend that all plugins be placed inside a [scratch image](https://hub.docker.com/_/scratch).
:::

## Overview

From [Go documentation](https://golang.org/):

> Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.

## Code

To create a plugin using Go, we'll need to first decide what task we want this plugin to accomplish.

For this example, we're going to create a program that makes an HTTP request from the provided input:

```go
package main

import (
"fmt"
"net/http"
"os"
"strings"
)

func main() {
// import method parameter from environment
method := os.Getenv("PARAMETER_METHOD")
// import body parameter from environment
body := os.Getenv("PARAMETER_BODY")
// import url parameter from environment
url := os.Getenv("PARAMETER_URL")

// create payload from body
payload := strings.NewReader(body)

// create new HTTP request from provided input
request, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
os.Exit(1)
}

// send HTTP request and capture response
response, err := http.DefaultClient.Do(request)
if err != nil {
fmt.Println(err)
os.Exit(1)
}

// output the response
fmt.Println(response)
}
```

:::info
An example of this code is provided in the [go section](https://github.com/go-vela/vela-tutorials/tree/main/plugins/go) of the [go-vela/vela-tutorials](https://github.com/go-vela/vela-tutorials/tree/main/plugins) repository.
:::

## Executable

Now that we have the program to accomplish our plugin's task, we need to compile the code to produce an executable binary for the target platform:

```sh
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o vela-sample
```

:::warning
Please ensure the program is compiled for the right target platform.

If it's not, the plugin may fail to properly run and produce unclear error messages.
:::

## Image

Once we have the executable needed to accomplish our plugin's task, we need to create a Dockerfile to produce an image.

This image should contain the binary and be setup to run that binary when the plugin is executed:

```docker
FROM golang:alpine

RUN apk add --update --no-cache ca-certificates

COPY vela-sample /bin/vela-sample

ENTRYPOINT ["/bin/vela-sample"]
```

:::info
An example of this image is provided in the [target/vela-sample](https://hub.docker.com/r/target/vela-sample) Docker repository.
:::

## Publishing

In order to run the plugin in a pipeline, we'll need to make sure we build and publish it to a Docker registry:

```sh
# build the image
docker build -t target/vela-sample:go .

# publish the image
docker push target/vela-sample:go
```

:::info
This has the added benefit of enabling others in the community to consume your plugin!
:::

## Troubleshooting

To verify that the plugin performs the desired task, it can be executed locally via the command line:

```sh
docker run --rm \
-e PARAMETER_BODY="This is a sample Vela plugin written with Go" \
-e PARAMETER_METHOD="POST" \
-e PARAMETER_URL="http://vela.localhost.com" \
target/vela-sample:go
```

## Usage

After publishing the image to a Docker registry, it can be referenced in a pipeline:

```yaml
version: "1"

steps:
- name: sample go plugin
image: target/vela-sample:go
pull: always
parameters:
url: http://vela.localhost.com
method: POST
body: |
This is a sample Vela plugin written with Go
```
Loading