Last active
April 9, 2020 15:38
-
-
Save mreider/7fa6d2873f4754bcce1727b3a2360886 to your computer and use it in GitHub Desktop.
Revisions
-
mreider revised this gist
Apr 9, 2020 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,17 +32,17 @@ </div> <div class="row"> <div class="one-third column,u-text-right">Platform:</div> <div class="one-third column"><select><option>Kubernetees</option></select></div> <div class="one-third column">Create a new PaaS Token</div> </div> <div class="row"> <div class="one-third column,u-text-right">PaaS Token:</div> <div class="one-third column"><select><option>my-paas-token</option></select> </div> <div class="one-third column">Create a new PaaS Token</div> </div> <div class="row"> <div class="one-third column,u-text-right">API Token:</div> <div class="one-third column"><select><option>Kubernetees</option></select> </div> <div class="one-third column">Create a new API Token</div> </div> -
mreider revised this gist
Apr 9, 2020 . 1 changed file with 29 additions and 11 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,27 +17,45 @@ <!-- .container is main centered wrapper --> <div class="container"> <br><br><br> <!-- columns should be the immediate child of a .row --> <div class="row"> <div class="twelve columns"> Run this installation script from a bash shell with access to your Kubernetes or OpenShift cluster. You must have kubectl and Helm 3 installed. </div> </div> <!-- just use a number and class 'column' or 'columns' --> <div class="row"> <div class="twelve columns">Note: if you have to set special parameters, like proxies, nodeSelectors, or imageUrls, please follow the instructions here instead.</div> </div> <div class="row"> <div class="one-third column">Platform:</div> <div class="one-third column"><select><option>Kubernetees</option></select></div> <div class="one-third column">Create a new PaaS Token</div> </div> <div class="row"> <div class="one-third column">PaaS Token:</div> <div class="one-third column"><select><option>my-paas-token</option></select> </div> <div class="one-third column">Create a new PaaS Token</div> </div> <div class="row"> <div class="one-third column">API Token:</div> <div class="one-third column"><select><option>Kubernetees</option></select> </div> <div class="one-third column">Create a new API Token</div> </div> <div class="row"> <div class="twelve columns">Copy and paste this into your terminal to download the helm chart, along with the public key to verify its signature. The installation will not proceed if verification fails.</div> </div> <div class="row"> <div class="ten columns"><textarea class="u-full-width">helm repo add dynatrace https://raw.githubusercontent.com/Dynatrace/helm-charts/master/repos/stable ; kubectl create namespace dynatrace ; curl -o https://publickeylocation/keyring.pub for verifying the helm chart ; helm install dynatrace-oneagent-operator dynatrace/dynatrace-oneagent-operator -n dynatrace --set platform="kubernetes",oneagent.apiUrl="https://rss34356.live.dynatrace.com/api", secret.apiToken="039fdif9340545", secret.paasToken="0f0sdf9243jwkf-sdfgoaf" --verify --keyring keyring.pub</textarea></div> <div class="one column"><input class="button-primary" type="submit" value="copy"></div> </div> </div> -
mreider created this gist
Apr 9, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,46 @@ <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>webui</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- FONT –––––––––––––––––––––––––––––––––––––––––––––––––– --> <link href='//fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" /> </head> <body> <!-- .container is main centered wrapper --> <div class="container"> <!-- columns should be the immediate child of a .row --> <div class="row"> <div class="one column">One</div> <div class="eleven columns">Eleven</div> </div> <!-- just use a number and class 'column' or 'columns' --> <div class="row"> <div class="two columns">Two</div> <div class="ten columns">Ten</div> </div> <!-- there are a few shorthand columns widths as well --> <div class="row"> <div class="one-third column">1/3</div> <div class="two-thirds column">2/3</div> </div> <div class="row"> <div class="one-half column">1/2</div> <div class="one-half column">1/2</div> </div> </div> </body> </html>