-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Adrian Cole <[email protected]>
- Loading branch information
1 parent
14347d9
commit b8f2b72
Showing
25 changed files
with
175 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.16 | ||
|
||
require github.com/gohugoio/hugo v0.80.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "site/themes/syna"] | ||
path = site/themes/syna | ||
url = https://github.com/okkur/syna.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,6 @@ last_known_envoy.txt | |
testdata/ | ||
site/*.json | ||
e2e/*.yaml | ||
|
||
netlify.toml | ||
site/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[build] | ||
base = "site" | ||
publish = "public" | ||
|
||
[build.environment] | ||
HUGO_VERSION = "0.85.0" | ||
|
||
[context.production] | ||
command = "hugo --gc --minify" | ||
|
||
[context.deploy-preview] | ||
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL" | ||
|
||
[context.branch-deploy] | ||
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
resources/ | ||
public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Envoy site | ||
# func-e.io | ||
|
||
The following files are hosted on https://func-e.io, specifically via [Netlify redirects](https://github.com/tetratelabs/func-e.io/blob/master/site/static/_redirects): | ||
This directory holds the func-e site's source code. To visit the site click [here](https://func-e.io/) | ||
|
||
Latest master merge: | ||
* https://func-e.io/install.sh -> [./install.sh](install.sh) | ||
* https://www.func-e.io/usage/ -> [./usage.md](usage.md) | ||
* this is verified by [usage_md_test.go](../internal/cmd/usage_md_test.go) | ||
The website is built using [Hugo](https://gohugo.io/), as static website generator, and [Syna](https://about.okkur.org/syna/) theme. | ||
|
||
## Deployment process | ||
This site deploys via Netlify on change to the `master` branch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
baseurl = "https://func-e.io/" | ||
languageCode = "en-us" | ||
defaultContentLanguage = "en" | ||
title = "func-e" | ||
theme = "syna" | ||
enableGitInfo = true | ||
disableKinds = ["RSS", "taxonomy", "taxonomyTerm"] | ||
ignorefiles = [ "content/dev/.*" ] | ||
|
||
[params] | ||
name = "func-e" | ||
title ="func-e (pronounced funky) makes running Envoy® easy" | ||
description = "func-e allows you to quickly see available versions of Envoy and try them out" | ||
author = "Tetrate" | ||
|
||
[[menu.main]] | ||
url = "https://github.com/tetratelabs/func-e/blob/master/USAGE.md" | ||
name = "Usage" | ||
weight = 20 | ||
|
||
[[menu.main]] | ||
url = "https://github.com/tetratelabs/func-e/releases" | ||
name = "Releases" | ||
weight = 30 | ||
|
||
[[menu.main]] | ||
url = "https://github.com/tetratelabs/func-e" | ||
name = "GitHub" | ||
weight = 40 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
+++ | ||
fragment = "copyright" | ||
date = "2021-07-06" | ||
weight = 1250 | ||
background = "dark" | ||
|
||
copyright = "2021 © Tetrate.io. Envoy® is a registered trademark of The Linux Foundation in the United States and/or other countries." | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
+++ | ||
headless = true | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
+++ | ||
fragment = "nav" | ||
date = "2021-07-06" | ||
weight = 0 | ||
sticky = true | ||
background = "dark" | ||
|
||
# Branding options | ||
[asset] | ||
image = "branding_logo.svg" | ||
text = "func-e" | ||
|
||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
+++ | ||
title = "func-e" | ||
date = "2021-07-06" | ||
subtitle = "func-e (pronounced funky) makes running Envoy® easy" | ||
description = "func-e allows you to quickly see available versions of Envoy and try them out" | ||
+++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
+++ | ||
title = "Consistent" | ||
date = "2021-07-06" | ||
weight = 20 | ||
|
||
[asset] | ||
icon = "fas fa-copy" | ||
+++ | ||
|
||
`func-e use` pins the version when you need to |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
+++ | ||
title = "Easy" | ||
date = "2021-07-06" | ||
weight = 10 | ||
|
||
[asset] | ||
icon = "fas fa-box-open" | ||
+++ | ||
|
||
One command to get started: `func-e run` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
+++ | ||
fragment = "items" | ||
date = "2021-07-06" | ||
weight = 150 | ||
|
||
title = "Features" | ||
subtitle= "" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
+++ | ||
fragment = "hero" | ||
date = "2021-07-06" | ||
weight = 110 | ||
background = "light" | ||
particles = true | ||
|
||
title = "func-e makes running Envoy® easy" | ||
|
||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
+++ | ||
headless = true | ||
+++ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
+++ | ||
fragment = "content" | ||
date = "2021-07-06" | ||
weight = 150 | ||
+++ | ||
|
||
func-e (pronounced funky) allows you to quickly see available versions of Envoy and try them out. This makes it easy to validate | ||
configuration you would use in production. Each time you end a run, a snapshot of runtime state is taken on | ||
your behalf. This makes knowledge sharing and troubleshooting easier, especially when upgrading. Try it out! | ||
|
||
```sh | ||
$ curl -L https://func-e.io/install.sh | bash -s -- -b /usr/local/bin | ||
$ func-e run -c /path/to/envoy.yaml | ||
# If you don't have a configuration file, you can start the admin port like this | ||
$ func-e run --config-yaml "admin: {address: {socket_address: {address: '127.0.0.1', port_value: 9901}}}" | ||
``` |
File renamed without changes.