Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DevOps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CLEMENTE Damien
DevOps
Commits
ba81c1e0
Commit
ba81c1e0
authored
3 months ago
by
CLEMENTE Damien
Browse files
Options
Downloads
Patches
Plain Diff
Update file 5. installation_load-balancer
parent
ab19e287
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
5. installation_load-balancer
+80
-0
80 additions, 0 deletions
5. installation_load-balancer
with
80 additions
and
0 deletions
5. installation_load-balancer
0 → 100644
+
80
−
0
View file @
ba81c1e0
# Installation et Utilisation de Helm
## 1. Qu'est-ce que Helm ?
Helm est un gestionnaire de paquets pour Kubernetes. Il permet de déployer, configurer et gérer des applications sous forme de **charts** (modèles de déploiement préconfigurés).
## 2. Installation de Helm
Sur votre machine :
```bash
curl -O https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
bash ./get-helm-3
```
Vérification de l'installation :
```bash
helm version
```
## 3. Utilisation de base de Helm
### a. Rechercher un chart dans le Hub Helm
```bash
helm search hub wordpress
```
### b. Ajouter un dépôt de charts
```bash
helm repo add stable https://charts.helm.sh/stable
helm repo add bitnami https://charts.bitnami.com/bitnami
```
Vérification des dépôts ajoutés :
```bash
helm repo list
```
### c. Rechercher un chart dans un dépôt
```bash
helm search repo stable
```
### d. Voir les détails d'un chart
```bash
helm show chart bitnami/wordpress
```
## 4. Déploiement d'une application avec Helm
Exemple : déploiement de **WordPress**
```bash
helm install wordpress bitnami/wordpress
```
Vérification du déploiement :
```bash
helm list
```
Afficher l'état du déploiement :
```bash
helm status wordpress
```
## 5. Suppression d'une application déployée
```bash
helm uninstall wordpress
```
Avec ces commandes, il est plus simple de gerer ses pods kubes et de deployer ses applications.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment