pages.es/*: add Spanish translation; npm: update page (#11297)
* npm: improved description of npm list and npm install
* npm, nvm: add Spanish translation
* nvm: add Spanish translations to the commands
* helm-install, helm, nest, netlify, next, nginx, vite: add Spanish translation
* choco, clear, cmd, del, dir, mkdir: add Spanish translation
* helm-*: update Spanish translation
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
* pages.es/common: update pages
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
* pages.es/windows: update pages
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
---------
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2023-10-27 19:43:16 +01:00
|
|
|
# helm install
|
|
|
|
|
2024-01-07 10:44:17 +00:00
|
|
|
> Instala un chart de helm.
|
pages.es/*: add Spanish translation; npm: update page (#11297)
* npm: improved description of npm list and npm install
* npm, nvm: add Spanish translation
* nvm: add Spanish translations to the commands
* helm-install, helm, nest, netlify, next, nginx, vite: add Spanish translation
* choco, clear, cmd, del, dir, mkdir: add Spanish translation
* helm-*: update Spanish translation
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
* pages.es/common: update pages
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
* pages.es/windows: update pages
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
---------
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2023-10-27 19:43:16 +01:00
|
|
|
> Más información: <https://helm.sh/docs/intro/using_helm/#helm-install-installing-a-package>.
|
|
|
|
|
|
|
|
- Instala un chart de helm:
|
|
|
|
|
|
|
|
`helm install {{nombre}} {{nombre_del_repositorio}}/{{nombre_del_chart}}`
|
|
|
|
|
|
|
|
- Instala un chart de helm desde un directorio de chart desempaquetado:
|
|
|
|
|
|
|
|
`helm install {{nombre}} {{ruta/al/directorio_de_origen}}`
|
|
|
|
|
|
|
|
- Instala un chart de helm desde una URL:
|
|
|
|
|
|
|
|
`helm install {{nombre_del_paquete}} {{https://example.com/charts/packagename-1.2.3.tgz}}`
|
|
|
|
|
2023-12-13 05:51:07 +00:00
|
|
|
- Instala un chart de helm y genera un nombre:
|
pages.es/*: add Spanish translation; npm: update page (#11297)
* npm: improved description of npm list and npm install
* npm, nvm: add Spanish translation
* nvm: add Spanish translations to the commands
* helm-install, helm, nest, netlify, next, nginx, vite: add Spanish translation
* choco, clear, cmd, del, dir, mkdir: add Spanish translation
* helm-*: update Spanish translation
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
* pages.es/common: update pages
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
* pages.es/windows: update pages
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
---------
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2023-10-27 19:43:16 +01:00
|
|
|
|
|
|
|
`helm install {{nombre_del_repositorio}}/{{nombre_del_chart}} --generate-name`
|
|
|
|
|
|
|
|
- Realiza una simulación:
|
|
|
|
|
|
|
|
`helm install {{nombre}} {{nombre_del_repositorio}}/{{nombre_del_chart}} --dry-run`
|
|
|
|
|
|
|
|
- Instala un chart de helm con valores personalizados:
|
|
|
|
|
|
|
|
`helm install {{nombre}} {{nombre_del_repositorio}}/{{nombre_del_chart}} --set {{parámetro1}}={{valor1}},{{parámetro2}}={{valor2}}`
|
|
|
|
|
|
|
|
- Instala un chart de helm pasando un archivo de valores personalizados:
|
|
|
|
|
|
|
|
`helm install {{nombre}} {{nombre_del_repositorio}}/{{nombre_del_chart}} --values {{ruta/a/valores.yaml}}`
|