Skip to content
Snippets Groups Projects
  1. Nov 17, 2017
  2. Nov 16, 2017
  3. Nov 15, 2017
  4. Nov 14, 2017
  5. Nov 13, 2017
  6. Nov 10, 2017
  7. Nov 09, 2017
  8. Nov 08, 2017
    • Jess's avatar
      Merge pull request #52 from jessicayuen/hyphenated-components · c2a0ea15
      Jess authored
      Jsonnet handling of component names with special characters
    • Alex Clemmer's avatar
      Add optional params to prototype spec · ffd62b9b
      Alex Clemmer authored
      Fixes #69.
      
      Currently we allow users to specify prototypes using Jsonnet. At the
      head of each prototype should be a comment with semi-structured
      metadata, e.g.,
      
        // @apiVersion 0.0.1
        // @name io.ksonnet.pkg.nginx-simple
        // @description Deploys a simple, stateless nginx server with server
        // blocks (roughly equivalent
        //   to nginx virtual hosts). The nginx container is deployed using a
        //   Kubernetes deployment, and is exposed to a network with a service.
        // @param namespace string default Namespace in which to put the
        // application
        // @param name string Name to give to each of the components
      
      Critically, some metadata about params is stored using the `@param` tag,
      including name, type, and description, for pretty printing.
      
      This commit will introduce a new param type, `@optionalParam`. This type
      has a name, type, default value, and description.
      
      It is currently not possible to specify a default value with spaces, but
      this should be good enough for MVP.
      ffd62b9b
    • Alex Clemmer's avatar
      De/serialize specification objects with YAML · 56befd0f
      Alex Clemmer authored
      Fixes #48.
      
      Currently the structs `app.Spec`, `registry.Spec`, and `parts.Spec` are
      all serialized and deserialized using JSON instead of YAML.
      
      This commit will resolve this issue.
      56befd0f