Skip to content
This repository was archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Corrected typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tonikautto committed Sep 13, 2019
1 parent a55d2bc commit 518bb9c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
6 changes: 3 additions & 3 deletions 1-Deploy-Minikube-Win.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#
param (

[Int] $VmMemory = 8000,
[Int] $VmCpu = 4
)

# Start minikube with 2 CPU and 8GB RAM
minikube start --memory 8000 --cpus=4
minikube start --memory $VmMemory --cpus=$VmCpu

# Force Kubectl to poin to minikube
kubectl config set-cluster minikube
Expand Down
30 changes: 17 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,43 +36,47 @@ Hyper-V Requirements: VM Monitor Mode Extensions: Yes
## Install Tools

Tools only need to be installed once, and only if not already installed.


* Virtualbox
* Minikube
* Kubectl
* Helm

The attached script [0-Install-Tools-Chocolatey-Win.ps1](0-Install-Tools-Chocolatey-Win.ps1) uses [Chocolatey package manager for Windows](https://chocolatey.org/) to install all the required tools.
All required tools can be installed
The instriattached script [0-Install-Tools-Chocolatey-Win.ps1](0-Install-Tools-Chocolatey-Win.ps1) uses [Chocolatey package manager for Windows](https://chocolatey.org/) to install all the required tools.

Either install manually following below commands _OR_ run attached [0-Install-Tools-Chocolatey-Win.ps1](0-Install-Tools-Chocolatey-Win.ps1)

1. Open PowerShell terminal as Administrator
1. Run [0-Install-Tools-Chocolatey-Win.ps1](0-Install-Tools-Chocolatey-Win.ps1)
1. Open Virtualbox GUI to confirm it was installed correctly
1. Interact with tools in Powershell temrinal to validate they were installed
- Minikube `minikube --help`
- Kubectl `kubectl --help`
- Helm `helm --help`
1. Install Chocolatey package manager <br/>
`Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))`
1. Install required tools
* Virtual box: `choco install virtualbox --yes`
* Minikube: `choco install minikube --yes`
* Kubectl: `choco install kubernetes-cli --yes`
* Helm: `choco install kubernetes-helm --version 2.13.1 --yes --force`
<br/>NOTE, forcing 2.13.1 due to https://support.qlik.com/articles/000075385

## Deploy Qlik Sense on Kubernetes on Minikube

5. Open PowerShell terminal
1. Run deployment script [1-Deploy-Minikube-Win.ps1](1-Deploy-Minikube-Win.ps1)
1. Get Minikube IP address
<br/>`minikube ip`
4. Open PowerShell terminal
1. Run `./1-Deploy-Minikube-Win.ps1`
1. Get Minikube IP address<br/> `minikube ip`
1. Update local host file to enable resolving Minikube IP to *elastic.example*.
<br/>Windows hostfile in *C:\Windows\System32\drivers\etc* to include row with IP from previous refering to *elastic.example* <br /> `<IP ADDRESS> elastic.example`

## Access Qlik Sense

9. Browse to console https://elastic.example:32443/console/
8. Browse to console https://elastic.example:32443/console/
1. Apply license
1. Browse to Hub https://elastic.example:32443
<br/>User: [email protected]
<br/>Pwd: Password1!

## Remove deployment

12. Terminated and remove minikube instance <br /> `minikube delete`
11. Terminated and remove minikube instance <br /> `minikube delete`

## Troubleshooting

Expand Down

0 comments on commit 518bb9c

Please sign in to comment.