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 broken links #1786

Merged
merged 1 commit into from
Oct 1, 2021
Merged
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ debug the plugin.

## Preview documentation

We use [Hugo](gohugo.io) to build our documentation site, and it is hosted on
[Netlify](netlify.com). You don't have to install Hugo locally because the
We use [Hugo](https://gohugo.io) to build our documentation site, and it is hosted on
[Netlify](https://netlify.com). You don't have to install Hugo locally because the
preview happens inside a docker container.

1. Run `make docs-preview` to start serving the docs. It will watch the file
Expand Down
1 change: 1 addition & 0 deletions docs/content/credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: Credentials
description: The lifecycle of a credential from definition, to resolution, and finally injection at runtime
aliases:
- /how-credentials-work/
- /best-practices/credentials/
---

When you are authoring a bundle, you can define what credentials your bundle
Expand Down
2 changes: 1 addition & 1 deletion docs/content/mixins/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ You can specify either the tag or the digest.

#### Syntax
Username and password are optional because the mixin will default to using environment variables provided by DOCKER_USERNAME and DOCKER_PASSWORD from a parameter or a credential.
See an [example](/examples/docker-mixin-test/README.md#notes-on-docker-login) for how to use
See an [example](/docker-mixin/src/examples/docker-mixin-test/README.md#notes-on-docker-login) for how to use
docker login and securely provide your username and password.
```yaml
- docker:
Expand Down
2 changes: 1 addition & 1 deletion docs/content/parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ installation via `porter install --param db_name=mydb -p myparamset`.
The bundle author may have decided to supply a default value for a given
parameter as well. This value would be used when neither a user-specified
value nor a parameter set value is supplied. See the `Parameters` section in
the [Author Bundles](/author-bundlesd#parameters/) doc for more info.
the [Author Bundles](/author-bundles#parameters/) doc for more info.

## Q & A

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3091,14 +3091,17 @@ blockquote p {
-webkit-backface-visibility: hidden;
position: relative;
width: 100%;
overflow: hidden; }
height: 100%;
overflow-y: visible;
overflow-x: clip; }
.off-canvas-wrap.move-right, .off-canvas-wrap.move-left, .off-canvas-wrap.move-bottom, .off-canvas-wrap.move-top {
min-height: 100%;
-webkit-overflow-scrolling: touch; }

.inner-wrap {
position: relative;
width: 100%;
height: 100%;
-webkit-transition: -webkit-transform 500ms ease;
-moz-transition: -moz-transform 500ms ease;
-ms-transition: -ms-transform 500ms ease;
Expand Down Expand Up @@ -6392,6 +6395,9 @@ body.home {
body.home #footer .row {
max-width: 100%; }

html, body {
height: 100%; }

nav.home-nav {
position: absolute;
min-height: 300px;
Expand Down Expand Up @@ -7223,6 +7229,9 @@ nav.home-nav {
#helm .hidden {
display: none; }

#helm .off-canvas-wrap {
height: 100%; }

#helm .off-canvas-wrap.move-left {
position: fixed; }

Expand Down Expand Up @@ -7346,6 +7355,7 @@ body {
-webkit-box-sizing: border-box;
box-sizing: border-box;
min-height: 100%;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
padding-left: 300px;
Expand Down Expand Up @@ -8172,7 +8182,7 @@ body {
color: black;
border: none;
padding: 0.75em 1em;
margin: 0.25em 0 2.5em;
margin: 0 0 2.5em;
font-size: 1rem; }
.main .content-wrap.markdown pre code,
.main .content-wrap pre code {
Expand Down Expand Up @@ -8259,9 +8269,17 @@ body {
.main .content-wrap .youtube-player {
min-height: 320px; }

.copy-button-container {
display: flex;
justify-content: flex-end; }
.copy-button-container .copy-button {
margin-bottom: 0;
padding: 4px; }

@media only screen and (max-width: 64.063em) {
.container-full {
padding-left: 0; }
padding-left: 0;
overflow-y: auto; }
.left-off-canvas-toggle .fa {
padding: 1em 1.25em;
line-height: 3; }
Expand Down Expand Up @@ -8351,42 +8369,45 @@ body {
.main .content-wrap article p:first-child {
padding-right: 0;
font-size: 17.92px; }
aside.left-off-canvas-menu ul {
background: #2BA0D3 !important; }
aside.left-off-canvas-menu ul li {
font-family: "klinic-bold", "klinic bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
letter-spacing: 0.05em;
-webkit-font-smoothing: antialiased;
font-size: 1.25rem; }
aside.left-off-canvas-menu ul li a {
color: white !important;
border-bottom: none !important; }
aside.left-off-canvas-menu ul li a:hover {
background: #2BA0D3 !important; }
aside.left-off-canvas-menu ul li a.active {
aside.left-off-canvas-menu {
height: calc(100vh - calc(100vh - 100%));
overflow-y: auto; }
aside.left-off-canvas-menu ul {
background: #2BA0D3 !important; }
aside.left-off-canvas-menu ul li {
font-family: "klinic-bold", "klinic bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 600;
letter-spacing: 0.05em;
-webkit-font-smoothing: antialiased;
font-size: 1.25rem; }
aside.left-off-canvas-menu ul li a {
color: white !important;
background: #277A9F !important; }
aside.left-off-canvas-menu ul li a + ul {
display: none;
background: #277A9F !important;
margin-left: 0;
padding: 0.5em 0 1em 1.5em; }
aside.left-off-canvas-menu ul li a + ul li {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
letter-spacing: 0;
font-size: 1rem;
list-style: none; }
aside.left-off-canvas-menu ul li a + ul li a {
padding: 0.1em 0.66667rem;
border-bottom: none;
color: #E4E4E4 !important; }
aside.left-off-canvas-menu ul li a.active + ul {
display: block; }
aside.left-off-canvas-menu .button-wrap {
padding: 0.75em 5%; }
aside.left-off-canvas-menu .button-wrap .button {
margin: 0.4em 0; }
border-bottom: none !important; }
aside.left-off-canvas-menu ul li a:hover {
background: #2BA0D3 !important; }
aside.left-off-canvas-menu ul li a.active {
color: white !important;
background: #277A9F !important; }
aside.left-off-canvas-menu ul li a + ul {
display: none;
background: #277A9F !important;
margin-left: 0;
padding: 0.5em 0 1em 1.5em; }
aside.left-off-canvas-menu ul li a + ul li {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
letter-spacing: 0;
font-size: 1rem;
list-style: none; }
aside.left-off-canvas-menu ul li a + ul li a {
padding: 0.1em 0.66667rem;
border-bottom: none;
color: #E4E4E4 !important; }
aside.left-off-canvas-menu ul li a.active + ul {
display: block; }
aside.left-off-canvas-menu .button-wrap {
padding: 0.75em 5%; }
aside.left-off-canvas-menu .button-wrap .button {
margin: 0.4em 0; }
.top-bar .breadcrumb {
left: 2.75rem; }
.top-bar .right li {
Expand Down