Guest User

Untitled

a guest
Jan 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. {
  2. // Required arguments
  3. name:: error "'name' must be specified",
  4. port:: error "'port' must be specified",
  5.  
  6. ...,
  7. }
  8.  
  9. {
  10. local template = = import "./template.jsonnet";
  11.  
  12. template + {
  13. name:: "service",
  14. port:: 8080,
  15. }
  16.  
  17. {
  18. local template = = import "./template.jsonnet";
  19.  
  20. template + {
  21. name:: "service",
  22. port:: [8080,8081,8082],
  23. }
Add Comment
Please, Sign In to add comment