Skip to content

Instantly share code, notes, and snippets.

@mreider
Last active April 9, 2020 15:38
Show Gist options
  • Select an option

  • Save mreider/7fa6d2873f4754bcce1727b3a2360886 to your computer and use it in GitHub Desktop.

Select an option

Save mreider/7fa6d2873f4754bcce1727b3a2360886 to your computer and use it in GitHub Desktop.

Revisions

  1. mreider revised this gist Apr 9, 2020. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -32,17 +32,17 @@
    </div>

    <div class="row">
    <div class="one-third column">Platform:</div>
    <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">PaaS Token:</div>
    <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">API Token:</div>
    <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>
  2. mreider revised this gist Apr 9, 2020. 1 changed file with 29 additions and 11 deletions.
    40 changes: 29 additions & 11 deletions index.html
    Original 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="one column">One</div>
    <div class="eleven columns">Eleven</div>
    <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="two columns">Two</div>
    <div class="ten columns">Ten</div>
    <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>

    <!-- 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 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="one-half column">1/2</div>
    <div class="one-half column">1/2</div>
    <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>
  3. mreider created this gist Apr 9, 2020.
    46 changes: 46 additions & 0 deletions index.html
    Original 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>