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

chore(docs): update mlp documentation #1658

Open
wants to merge 53 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
dbfeda9
chore(docs): update mlp documentation
bot-targa Sep 20, 2024
fbbca03
chore(docs): update mlp documentation
bot-targa Sep 23, 2024
b375d91
chore(docs): update mlp documentation
bot-targa Sep 24, 2024
dd83975
chore(docs): update mlp documentation
bot-targa Sep 25, 2024
7150d4b
chore(docs): update mlp documentation
bot-targa Sep 26, 2024
7627f54
chore(docs): update mlp documentation
bot-targa Sep 27, 2024
58cf7d0
chore(docs): update mlp documentation
bot-targa Sep 27, 2024
d528beb
chore(docs): update mlp documentation
bot-targa Sep 27, 2024
d10fce5
chore(docs): update mlp documentation
bot-targa Sep 27, 2024
b526b82
chore(docs): update mlp documentation
bot-targa Sep 27, 2024
dff2bf8
chore(docs): update mlp documentation
bot-targa Sep 30, 2024
0a1bf79
chore(docs): update mlp documentation
bot-targa Sep 30, 2024
6b454b1
chore(docs): update mlp documentation
bot-targa Sep 30, 2024
b9d344e
chore(docs): update mlp documentation
bot-targa Oct 1, 2024
d3931ad
chore(docs): update mlp documentation
bot-targa Oct 2, 2024
fd39495
chore(docs): update mlp documentation
bot-targa Oct 3, 2024
9d680e4
chore(docs): update mlp documentation
bot-targa Oct 4, 2024
d90fcc5
chore(docs): update mlp documentation
bot-targa Oct 7, 2024
8c80d73
chore(docs): update mlp documentation
bot-targa Oct 8, 2024
c215a80
chore(docs): update mlp documentation
bot-targa Oct 9, 2024
e911570
chore(docs): update mlp documentation
bot-targa Oct 9, 2024
df95390
chore(docs): update mlp documentation
bot-targa Oct 10, 2024
ebb62af
chore(docs): update mlp documentation
bot-targa Oct 11, 2024
90bfc1f
chore(docs): update mlp documentation
bot-targa Oct 14, 2024
23d1ddf
chore(docs): update mlp documentation
bot-targa Oct 15, 2024
4bbead3
chore(docs): update mlp documentation
bot-targa Oct 16, 2024
f4c16af
chore(docs): update mlp documentation
bot-targa Oct 17, 2024
46d9396
chore(docs): update mlp documentation
bot-targa Oct 18, 2024
913390e
chore(docs): update mlp documentation
bot-targa Oct 18, 2024
773e86b
chore(docs): update mlp documentation
bot-targa Oct 21, 2024
c5ac2e3
chore(docs): update mlp documentation
bot-targa Oct 22, 2024
8f7097a
chore(docs): update mlp documentation
bot-targa Oct 23, 2024
e651643
chore(docs): update mlp documentation
bot-targa Oct 24, 2024
0029bf6
chore(docs): update mlp documentation
bot-targa Oct 25, 2024
211147b
chore(docs): update mlp documentation
bot-targa Oct 28, 2024
4ce53d8
chore(docs): update mlp documentation
bot-targa Oct 29, 2024
1ac1ac0
chore(docs): update mlp documentation
bot-targa Oct 30, 2024
f731881
chore(docs): update mlp documentation
bot-targa Oct 31, 2024
5b02f85
chore(docs): update mlp documentation
bot-targa Nov 1, 2024
f8c79b6
chore(docs): update mlp documentation
bot-targa Nov 4, 2024
7dd97f9
chore(docs): update mlp documentation
bot-targa Nov 5, 2024
1b4071c
chore(docs): update mlp documentation
bot-targa Nov 6, 2024
6a90f09
chore(docs): update mlp documentation
bot-targa Nov 7, 2024
ac9df33
chore(docs): update mlp documentation
bot-targa Nov 8, 2024
80c0c05
chore(docs): update mlp documentation
bot-targa Nov 11, 2024
044e54b
chore(docs): update mlp documentation
bot-targa Nov 12, 2024
5913f1a
chore(docs): update mlp documentation
bot-targa Nov 13, 2024
8cd1eb4
chore(docs): update mlp documentation
bot-targa Nov 14, 2024
7d28682
chore(docs): update mlp documentation
bot-targa Nov 15, 2024
2793dda
chore(docs): update mlp documentation
bot-targa Nov 15, 2024
0a1f71c
chore(docs): update mlp documentation
bot-targa Nov 15, 2024
dd9f46b
chore(docs): update mlp documentation
bot-targa Nov 15, 2024
ee0993e
chore(docs): update mlp documentation
bot-targa Nov 15, 2024
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
10 changes: 5 additions & 5 deletions docs/runtime_suite_tools/mlp/20_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ If you have [Golang] installed with a version >= 1.13 in your system and you hav
install `mlp` like this:

```sh
go install github.com/mia-platform/mlp@vv2.0.0-beta
go install github.com/mia-platform/mlp@v2.0.0-rc
```

Or like this if the `install` command is not available

```sh
go get -u github.com/mia-platform/mlp@vv2.0.0-beta
go get -u github.com/mia-platform/mlp@v2.0.0-rc
```

#### Binary Download
Expand All @@ -56,11 +56,11 @@ You can install `mlp` with the use of `curl` or `wget` and downloading the lates
choosing the correct platform and operating system:

```sh
curl -fsSL https://github.com/mia-platform/mlp/releases/download/vv2.0.0-beta/mlp-linux-amd64 -o /tmp/mlp
curl -fsSL https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc/mlp-linux-amd64 -o /tmp/mlp
```

```sh
wget -q https://github.com/mia-platform/mlp/releases/download/vv2.0.0-beta/mlp-linux-amd64 -O /tmp/mlp
wget -q https://github.com/mia-platform/mlp/releases/download/v2.0.0-rc/mlp-linux-amd64 -O /tmp/mlp
```

After you have downloaded the file you can validate it against the checksum you can find at this [url] running the
Expand All @@ -81,7 +81,7 @@ sudo install -g root -o root /tmp/mlp /usr/local/bin
If you want to run the cli in its environment or you want to test the cli you can use the Docker image:

```sh
docker run ghcr.io/mia-platform/mlp:vv2.0.0-beta
docker run ghcr.io/mia-platform/mlp:v2.0.0-rc
```

### Windows
Expand Down
31 changes: 30 additions & 1 deletion docs/runtime_suite_tools/mlp/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,32 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.0.0-rc] - 2024-10-08

### Fixed

- hanging if no resources has been applied successfully in a step
- error if a group/kind of a resource saved in the old inventory format is not availbale anymore in the cluster
now we skip the resource because we cannot retrieve it

## [v2.0.0-beta.2] - 2024-10-04

### Changed

- update to go 1.23.2

### Fixed

- hydrate command now add metadata to kustomize file to avoid "empty kubernetes file"
errors during deploy

## [v2.0.0-beta.1] - 2024-09-19

### Changed

- update to go 1.23.1
- update kubernetes libraries to 0.30

## [v2.0.0-beta] - 2024-07-25

### Changed
Expand Down Expand Up @@ -169,7 +195,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial Release 🎉🎉🎉

[Unreleased]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta...HEAD
[Unreleased]: https://github.com/mia-platform/mlp/compare/v2.0.0-rc...HEAD
[v2.0.0-rc]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta.2...v2.0.0-rc
[v2.0.0-beta.2]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta.1...v2.0.0-beta.2
[v2.0.0-beta.1]: https://github.com/mia-platform/mlp/compare/v2.0.0-beta...v2.0.0-beta.1
[v2.0.0-beta]: https://github.com/mia-platform/mlp/compare/v1.2.3...v2.0.0-beta
[v1.2.3]: https://github.com/mia-platform/mlp/compare/v1.2.2...v1.2.3
[v1.2.2]: https://github.com/mia-platform/mlp/compare/v1.2.1...v1.2.2
Expand Down