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

Sync from main #2101

Merged
merged 28 commits into from
May 26, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
cc409a1
Add F5 to adopters list
carolynvs Mar 14, 2022
7bf21dd
Merge pull request #1970 from carolynvs/f5-adopter
carolynvs Mar 14, 2022
55d92c0
Bump cnab-go, Go, docker, containerd and k8s (on stable) (#1971)
carolynvs Mar 22, 2022
7755f97
Add probot settings configuration file
carolynvs Apr 8, 2022
8f3048b
Added reference parameter to porter install sample
aguywithcode Apr 8, 2022
dc24a06
Merge pull request #1896 from aguywithcode/patch-1
carolynvs Apr 8, 2022
a059a96
Merge pull request #2011 from carolynvs/probot-settings
carolynvs Apr 11, 2022
27b7b3c
fix edge cases in docs
qpetraroia Apr 18, 2022
00ec531
update contributors.md
qpetraroia Apr 20, 2022
0038f3c
Merge pull request #2024 from qpetraroia/qpetraroia
carolynvs Apr 20, 2022
9a19346
Use a symlink in a linux install
tamirkamara Apr 24, 2022
0a31462
Update CONTRIBUTORS.md
tamirkamara Apr 24, 2022
59d55d3
Merge pull request #2032 from tamirkamara/fix/linux-install-symlink
carolynvs Apr 27, 2022
5157a01
Switch from StringSlice to StringArray (#1931)
Simpcyclassy Apr 29, 2022
9b9f8a1
Fix merge conflicts
carolynvs Apr 29, 2022
678aaf6
Merge pull request #2046 from carolynvs/backport-stringarray-fix
carolynvs May 2, 2022
c68be6c
Revert "Use a symlink in a linux install"
carolynvs May 2, 2022
7db0ea7
Merge pull request #2049 from carolynvs/revert-symlink
carolynvs May 2, 2022
beb5191
Pin v0.38 install script to compatible package versions
carolynvs May 18, 2022
6f59a6b
Merge pull request #2076 from carolynvs/pin-installed-versions
carolynvs May 19, 2022
bf5cb7c
Add shortlink to find an issue to work on
carolynvs May 20, 2022
05ab24c
Merge pull request #2086 from carolynvs/find-issues
carolynvs May 20, 2022
58b6d96
Find Issues link should only show open issues
carolynvs May 20, 2022
14662ec
Merge pull request #2087 from carolynvs/open-issues-only
carolynvs May 20, 2022
6a11797
Edit index.md for Typo (#2094)
hrittikhere May 24, 2022
3efa5f2
Add GitLab to Registries
hrittikhere May 24, 2022
d548847
Merge pull request #2098 from hrittikhere/main
carolynvs May 25, 2022
f8416ae
Merge branch 'main' into sync-from-main
carolynvs May 25, 2022
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: 3 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,6 @@ and we will add you. **All** contributors belong here. 💯
* [Om More](https://github.com/thisisommore)
* [Avinash Upadhyaya](https://github.com/avinashupadhya99)
* [Mike Barkas](https://github.com/mikebarkas)
* [Saksham Sharma](https://github.com/sakkshm26)
* [Saksham Sharma](https://github.com/sakkshm26)
* [Quentin Petraroia](https://github.com/qpetraroia)

2 changes: 2 additions & 0 deletions docs/content/contribute/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ Hello Carolyn!
That verifies your change but let's also run the [unit tests] and [end-to-end] tests
to make sure there aren't any regressions.

> In MacOS Monterey, port 5000 is already in use blocking `mage testSmoke` from running properly. To free port 5000, uncheck `AirPlay Receiver` in Sharing under System Preferences.

```
make test-unit
mage testSmoke
Expand Down
6 changes: 3 additions & 3 deletions docs/content/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Set VERSION to the most recent [v1 prerelease] version number.

```bash
export PORTER_HOME=~/.porterv1
export VERSION="v1.0.0-alpha.9"
export VERSION="v1.0.0-alpha.19"
curl -L https://cdn.porter.sh/$VERSION/install-mac.sh | bash
```

Expand All @@ -103,7 +103,7 @@ porter version

```bash
export PORTER_HOME=~/.porterv1
export VERSION="v1.0.0-alpha.9"
export VERSION="v1.0.0-alpha.19"
curl -L https://cdn.porter.sh/$VERSION/install-linux.sh | bash
```

Expand All @@ -120,7 +120,7 @@ porter version

```powershell
$PORTER_HOME="$env:USERPROFILE\.porterv1"
$VERSION="v1.0.0-alpha.9"
$VERSION="v1.0.0-alpha.19"
(New-Object System.Net.WebClient).DownloadFile("https://cdn.porter.sh/$VERSION/install-windows.ps1", "install-porter.ps1")
.\install-porter.ps1 -PORTER_HOME $PORTER_HOME
```
Expand Down
2 changes: 1 addition & 1 deletion docs/content/quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ To install a bundle, you use the `porter install` command.
porter install porter-hello --reference getporter/porter-hello:v0.1.0
```

In this example, you are installing the v0.1.0 version of the getporter/porter-hello bundle from its location in the default registry (Docker Hub) and setting the installation name to hello.
In this example, you are installing the v0.1.0 version of the getporter/porter-hello bundle from its location in the default registry (Docker Hub) and setting the installation name to porter-hello.

## List Bundle Installations

Expand Down