28 lines
471 B
Markdown
28 lines
471 B
Markdown
## Instalacion de Harbor
|
||
|
||
|
||
|
||
### Fase 1: Despliegue con Ingress
|
||
|
||
```bash
|
||
helm repo add harbor https://helm.goharbor.io
|
||
helm repo update
|
||
helm install harbor harbor/harbor \
|
||
--namespace harbor --create-namespace \
|
||
-f values.yaml
|
||
```
|
||
|
||
> Una vez listo, podrás acceder a:
|
||
>
|
||
> **[https://harbor.c2et.net](https://harbor.c2et.net)**
|
||
>
|
||
> Usuario: `admin`
|
||
> Contraseña: la definida en `harborAdminPassword` (p.ej. `Harbor12345`)
|
||
|
||
```bash
|
||
docker login harbor.c2et.net
|
||
```
|
||
|
||
|
||
|