Skip to content

Commit

Permalink
Use operator manifest from URL to install boundless operator
Browse files Browse the repository at this point in the history
  • Loading branch information
ranyodh committed Oct 26, 2023
1 parent d5c3241 commit 4372e06
Show file tree
Hide file tree
Showing 4 changed files with 635 additions and 675 deletions.
34 changes: 14 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,22 @@
# MKE 4 (Proof of Concept)

**Table of Contents**
1. [Introduction](#introduction)
2. [Setup](#setup)
1. [Prerequisites](#prerequisites)
2. [Create machines on AWS](#create-machines-on-aws)
3. [Install MKE](#install-mke)
1. [Compile the `mke` binary](#compile-the-mke-binary)
2. [Generate the `blueprint.yaml` config file](#generate-the-mkeyaml-config-file)
3. [MKE Config File](#mke-config-file)
3. [Deploy MKE](#deploy-mke)
4. [Update MKE](#update-mke)
5. [Connect to MKE](#connect-to-mke)
6. [Core Components](#core-components)
7. [Add-ons](#add-ons)
8. [Destroy MKE 4 deployment](#destroy-mke-4-deployment)
9. [Install MKE 4 on Kind cluster](#install-mke-4-on-kind-cluster)

# Boundless Operator - Tech Preview

## Introduction

TBD

## Setup
## Quick Start

### Install on Kind

1. Install Kind
````
2. Install Boundless CLI Binary:
```
curl -s -L https://github.com/ranyodh/boundless-tech-preview/releases/download/latest/bocli_darwin_x86_64.tar.gz | tar xvz - -C /usr/local/bin
``
### Prerequisites
Ensure that following are installed on the system:
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ func applyWrapper(c *cli.Context) error {
//}

log.Infof("Installing MKE Operator")
err = kubectlApply("manifests/mke-operator.yaml")
err = kubectlApply("https://raw.githubusercontent.com/ranyodh/boundless-tech-preview/main/deploy/static/boundless-operator.yaml")
if err != nil {
return fmt.Errorf("failed to install MKE Operator: %w", err)
}
Expand Down
Loading

0 comments on commit 4372e06

Please sign in to comment.