chore(doc): Move to new repository
This commit is contained in:
30
README.md
30
README.md
@@ -5,8 +5,8 @@
|
|||||||
<div style="text-align:center; margin: auto 0 4em 0" align="center">
|
<div style="text-align:center; margin: auto 0 4em 0" align="center">
|
||||||
|
|
||||||
[](https://katenary.readthedocs.io/en/latest/?badge=latest)
|
[](https://katenary.readthedocs.io/en/latest/?badge=latest)
|
||||||
[](https://goreportcard.com/report/github.com/metal3d/katenary)
|
[](https://goreportcard.com/report/github.com/Katenary/katenary)
|
||||||
[](https://github.com/metal3d/katenary/releases)
|
[](https://github.com/Katenary/katenary/releases)
|
||||||
[](https://sonarcloud.io/summary/new_code?id=metal3d_katenary)
|
[](https://sonarcloud.io/summary/new_code?id=metal3d_katenary)
|
||||||
[](https://sonarcloud.io/summary/new_code?id=metal3d_katenary)
|
[](https://sonarcloud.io/summary/new_code?id=metal3d_katenary)
|
||||||
[](https://sonarcloud.io/summary/new_code?id=metal3d_katenary)
|
[](https://sonarcloud.io/summary/new_code?id=metal3d_katenary)
|
||||||
@@ -41,16 +41,16 @@ The main developer is [Patrice FERLET](https://github.com/metal3d).
|
|||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
You can download the binaries from the [Release](https://github.com/metal3d/katenary/releases) section. Copy the binary
|
You can download the binaries from the [Release](https://github.com/Katenary/katenary/releases) section. Copy the binary
|
||||||
and rename it to `katenary`. Place the binary inside your `PATH`. You should now be able to call the `katenary` command.
|
and rename it to `katenary`. Place the binary inside your `PATH`. You should now be able to call the `katenary` command.
|
||||||
|
|
||||||
You can of course get the binary with `go install -u github.com/metal3d/katenary/cmd/katenary/...` but the `main` branch
|
You can of course get the binary with `go install -u github.com/Katenary/katenary/cmd/katenary/...` but the `main` branch
|
||||||
is continuously updated. It's preferable to use releases.
|
is continuously updated. It's preferable to use releases.
|
||||||
|
|
||||||
You can use this commands on Linux:
|
You can use this commands on Linux:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sh <(curl -sSL https://raw.githubusercontent.com/metal3d/katenary/master/install.sh)
|
sh <(curl -sSL https://raw.githubusercontent.com/Katenary/katenary/master/install.sh)
|
||||||
```
|
```
|
||||||
|
|
||||||
## Or, build yourself
|
## Or, build yourself
|
||||||
@@ -137,17 +137,17 @@ Flags:
|
|||||||
Use "katenary [command] --help" for more information about a command.
|
Use "katenary [command] --help" for more information about a command.
|
||||||
```
|
```
|
||||||
|
|
||||||
Katenary will try to find a `docker-compose.yaml` or `docker-compose.yml` file inside the current directory. It will
|
Katenary will try to find a `docker-compose.yaml` or `docker-compose.yml` file inside the current directory. It will
|
||||||
check *the existence of the `chart` directory to create a new Helm Chart inside a named subdirectory. Katenary will ask
|
check \*the existence of the `chart` directory to create a new Helm Chart inside a named subdirectory. Katenary will ask
|
||||||
you if you want to delete it before recreating.
|
you if you want to delete it before recreating.
|
||||||
|
|
||||||
It creates a subdirectory inside `chart` that is named with the `appname` option (default is `MyApp`)
|
It creates a subdirectory inside `chart` that is named with the `appname` option (default is `MyApp`)
|
||||||
|
|
||||||
> To respect the ability to install the same application in the same namespace, Katenary will create variable names
|
> To respect the ability to install the same application in the same namespace, Katenary will create variable names
|
||||||
> like `{{ .Release.Name }}-servicename`. So, you will need to use some labels inside your docker-compose file to help
|
> like `{{ .Release.Name }}-servicename`. So, you will need to use some labels inside your docker-compose file to help
|
||||||
> Katenary to build a correct helm chart.
|
> Katenary to build a correct helm chart.
|
||||||
|
|
||||||
Example of a possible `docker-compose.yaml` file:
|
Example of a possible `docker-compose.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
services:
|
services:
|
||||||
@@ -255,7 +255,7 @@ web:
|
|||||||
|
|
||||||
To validate the `katenary.yaml` file, you can use the JSON schema using the "master" raw content:
|
To validate the `katenary.yaml` file, you can use the JSON schema using the "master" raw content:
|
||||||
|
|
||||||
`https://raw.githubusercontent.com/metal3d/katenary/refs/heads/master/katenary.json`
|
`https://raw.githubusercontent.com/Katenary/katenary/refs/heads/master/katenary.json`
|
||||||
|
|
||||||
It's easy to configure in [LazyVim](https://www.lazyvim.org/), using `nvim-lspconfig`,
|
It's easy to configure in [LazyVim](https://www.lazyvim.org/), using `nvim-lspconfig`,
|
||||||
create a Lua file in your `plugins` directory, or apply the settings as the example below:
|
create a Lua file in your `plugins` directory, or apply the settings as the example below:
|
||||||
@@ -272,7 +272,7 @@ return {
|
|||||||
settings = {
|
settings = {
|
||||||
yaml = {
|
yaml = {
|
||||||
schemas = {
|
schemas = {
|
||||||
["https://raw.githubusercontent.com/metal3d/katenary/master/katenary.json"] = "katenary.yaml",
|
["https://raw.githubusercontent.com/Katenary/katenary/master/katenary.json"] = "katenary.yaml",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -288,7 +288,7 @@ Use this address to validate the `katenary.yaml` file in VSCode:
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"yaml.schemas": {
|
"yaml.schemas": {
|
||||||
"https://raw.githubusercontent.com/metal3d/katenary/master/katenary.json": "katenary.yaml"
|
"https://raw.githubusercontent.com/Katenary/katenary/master/katenary.json": "katenary.yaml"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# Install the latest version of the Katenary detecting the right OS and architecture.
|
# Install the latest version of the Katenary detecting the right OS and architecture.
|
||||||
# Can be launched with the following command:
|
# Can be launched with the following command:
|
||||||
# sh <(curl -sSL https://raw.githubusercontent.com/metal3d/katenary/master/install.sh)
|
# sh <(curl -sSL https://raw.githubusercontent.com/Katenary/katenary/master/install.sh)
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
@@ -43,7 +43,7 @@ if ! echo "$PATH" | grep -q "$INSTALL_PATH"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Where to download the binary
|
# Where to download the binary
|
||||||
BASE="https://github.com/metal3d/katenary/releases/latest/download/"
|
BASE="https://github.com/Katenary/katenary/releases/latest/download/"
|
||||||
|
|
||||||
# for compatibility with older ARM versions
|
# for compatibility with older ARM versions
|
||||||
if [ $ARCH = "x86_64" ]; then
|
if [ $ARCH = "x86_64" ]; then
|
||||||
|
Reference in New Issue
Block a user