Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: RFC: pkg/assets: Merkle DAG asset library #556

Closed
wants to merge 11 commits into from
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

The `openshift-install` command. This moves us to the new
install-config approach with [asset
generation](docs/design/assetgeneration.md) in Go instead of in
Terraform. Terraform is still used to push the assets out to
generation](docs/user/overview.md#asset-generation) in Go instead of
in Terraform. Terraform is still used to push the assets out to
resources on the backing platform (AWS, libvirt, or OpenStack), but
that push happens in a single Terraform invocation instead of in
multiple steps. This makes installation faster, because more
Expand Down
35 changes: 14 additions & 21 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ Log in using the admin credentials you configured when creating the cluster.

#### Kubeconfig

You can also use the admin kubeconfig which `openshift-install create cluster` placed under `--dir` (which defaults to `.`) in `auth/kubeconfig`.
You can also use the admin kubeconfig which `openshift-install create cluster` placed under `--dir` (which defaults to `.`) in `auth/kubeconfig-admin`.
If you launched the cluster with `openshift-install --dir "${DIR}" create cluster`, you can use:

```sh
export KUBECONFIG="${DIR}/auth/kubeconfig"
export KUBECONFIG="${DIR}/auth/kubeconfig-admin"
```

### Cleanup
Expand Down
Loading