istio.io/istio@v0.0.0-20240520182934-d79c90f27776/pkg/ctrlz/topics/assets/templates/env.html (about) 1 {{ define "content" }} 2 3 <p> 4 The set of environment variables defined for this process. 5 </p> 6 7 <table> 8 <thead> 9 <tr> 10 <th>Name</th> 11 <th>Value</th> 12 </tr> 13 </thead> 14 15 <tbody> 16 {{ range . }} 17 <tr> 18 <td>{{.Name}}</td> 19 <td>{{.Value}}</td> 20 </tr> 21 {{ end }} 22 </tbody> 23 </table> 24 25 {{ template "last-refresh" .}} 26 27 {{ end }}