Commit 7788072a authored by Sergio Gimenez's avatar Sergio Gimenez
Browse files

Update README

parent 9b5411e3
Loading
Loading
Loading
Loading
+1 −26
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ This repository contains the automation for deploying the Operator Platform.

## Documentation

Full documentation is available in the `docs/` directory and can be viewed locally.
Full documentation is available in the `docs/` directory and can be viewed in https://op-automation-b0b7e6.pages.i2cat.net

### Running Documentation Locally

@@ -26,28 +26,3 @@ Full documentation is available in the `docs/` directory and can be viewed local

4.  Open http://127.0.0.1:8000 in your browser.
## Quick Start (Cluster Creation)

Install kind:

```bash
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.29.0/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
```

Create the cluster:

```bash
kind create cluster --name operator-platform --config kind-config.yaml
```

Once the cluster is up, run `docker ps` on your host. You should see the `operator-platform-control-plane` container, and its `PORTS` section should include `0.0.0.0:6443->6443/tcp`. You might also see a `127.0.0.1:RANDOM_PORT->6443/tcp`—this is KinD’s default internal mapping, which you can ignore.

Export the kubeconfig:

```bash
kind get kubeconfig --name operator-platform > operator-platform-external-kubeconfig.yaml
```

Now, edit `operator-platform-external-kubeconfig.yaml`. Find the `server:` line (it will likely point to `https://0.0.0.0:6443`). Change it to use your host IP and port 6443.