-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into LZK/update-minio-version
- Loading branch information
Showing
13 changed files
with
577 additions
and
9 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
2 changes: 1 addition & 1 deletion
2
.../1.installation/1.linux/1.installation.md → ...nt/1.installation/1.linux/1.deployment.md
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
47 changes: 47 additions & 0 deletions
47
.docs/content/1.installation/1.linux/2.all-in-one-deployment.md
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,47 @@ | ||
# All in one deployment | ||
|
||
If you want to deploy ArmoniK with all the cloud services, this section is for you. | ||
|
||
::alert{type="info"} | ||
This deployment is for development purposes. | ||
:: | ||
|
||
## Deploy | ||
|
||
To launch the deployment, go to the [`infrastructure/quick-deploy/localhost/all`](https://github.com/aneoconsulting/ArmoniK/tree/main/infrastructure/quick-deploy/localhost/all) directory: | ||
|
||
If you want to deploy on AWS, go to the dedicated section on [`AWS`](https://github.com/aneoconsulting/ArmoniK/tree/main/infrastructure/quick-deploy/aws/all) | ||
|
||
Execute the following command: | ||
|
||
```bash | ||
make | ||
``` | ||
|
||
or | ||
|
||
```bash | ||
make deploy | ||
``` | ||
|
||
## Configuration | ||
|
||
All parameters are contained in [`parameters.tfvars`](https://github.com/aneoconsulting/ArmoniK/blob/main/infrastructure/quick-deploy/localhost/all/parameters.tfvars) | ||
|
||
::alert{type="info"} | ||
By default, all the cloud services are set to launch. To see what kind of parameters are available, read [`variables.tf`](https://github.com/aneoconsulting/ArmoniK/blob/main/infrastructure/quick-deploy/localhost/all/variables.tf) | ||
:: | ||
|
||
You can specify a custom parameter file. When executing the `make` command, you may use the `PARAMETERS_FILE` option to set the path to your file. | ||
|
||
```bash | ||
make PARAMETERS_FILE=my-custom-parameters.tfvars | ||
``` | ||
|
||
## Destroy | ||
|
||
To destroy the deployment, type: | ||
|
||
```bash | ||
make destroy | ||
``` |
2 changes: 1 addition & 1 deletion
2
...allation/1.linux/2.verify-installation.md → ...stallation/1.linux/3.verify-deployment.md
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
59 changes: 59 additions & 0 deletions
59
.docs/content/1.installation/3.aws/aws-all-in-one-deployment.md
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,59 @@ | ||
# AWS all in one deployment | ||
|
||
Deploying on AWS is similar to deploying on localhost but with the necessity to deploy an S3 bucket first. | ||
|
||
## Generate S3 bucket key | ||
|
||
Execute the following command to generate a prefix key: | ||
|
||
```bash | ||
make bootstrap-deploy PREFIX=<PREFIX_KEY> | ||
``` | ||
|
||
To deploy, simply execute the following command: | ||
|
||
```bash | ||
make deploy PREFIX=<PREFIX_KEY> | ||
``` | ||
|
||
Note : after the deployment, you can retrieve the prefix key in the prefix file: `<PATH_TO_AWS_FOLDER>/generated/.prefix` | ||
|
||
To destroy the deployment, execute the following command: | ||
|
||
```bash | ||
make destroy PREFIX=<PREFIX_KEY> | ||
``` | ||
|
||
To destroy the AWS prefix key, execute the following command: | ||
|
||
```bash | ||
make bootstrap-destroy PREFIX=<PREFIX_KEY> | ||
``` | ||
|
||
## Accessing Kubernetes cluster | ||
|
||
To access your Kubernetes cluster, execute the following command after entering your settings in the 3 angle brackets: | ||
|
||
```bash | ||
aws --profile <AWS_PROFILE> eks update-kubeconfig --region <AWS_REGION> --name <NAME_AWS_EKS> | ||
``` | ||
|
||
or simply enter the following command: | ||
|
||
```bash | ||
export KUBECONFIG=<PATH_TO_AWS_FOLDER>/generated/kubeconfig | ||
``` | ||
|
||
## Configuration | ||
|
||
All parameters are contained in [`parameters.tfvars`](https://github.com/aneoconsulting/ArmoniK/blob/main/infrastructure/quick-deploy/aws/all/parameters.tfvars) | ||
|
||
::alert{type="info"} | ||
By default, all the cloud services are set to launch. To see what kind of parameters are available, read [`variables.tf`](https://github.com/aneoconsulting/ArmoniK/blob/main/infrastructure/quick-deploy/aws/all/variables.tf) | ||
:: | ||
|
||
You can specify a custom parameter file. When executing the `make` command, you may use the `PARAMETERS_FILE` option to set the path to your file. | ||
|
||
```bash | ||
make PARAMETERS_FILE=my-custom-parameters.tfvars | ||
``` |
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
Oops, something went wrong.