istio.io/istio@v0.0.0-20240520182934-d79c90f27776/pkg/ctrlz/topics/assets/templates/args.html (about)

     1  {{ define "content" }}
     2  
     3  <p>
     4      The set of command-line arguments used when starting this process.
     5  </p>
     6  
     7  <table>
     8      <thead>
     9      <tr>
    10          <th>Index</th>
    11          <th>Value</th>
    12      </tr>
    13      </thead>
    14  
    15      <tbody>
    16          {{ range $index, $value := . }}
    17              <tr>
    18                  <td>{{$index}}</td>
    19                  <td>{{$value}}</td>
    20              </tr>
    21          {{ end }}
    22      </tbody>
    23  </table>
    24  
    25  <br>
    26  
    27  {{ template "last-refresh" .}}
    28  {{ end }}