Skip to content
Snippets Groups Projects
  1. Sep 02, 2017
  2. Sep 01, 2017
  3. Aug 31, 2017
  4. Aug 30, 2017
    • Marko Mikulicic's avatar
      Fix README · 25734d2c
      Marko Mikulicic authored
      Now the commands take either an env or a file, so let's at least fix the
      README to make it work with files.
      25734d2c
    • Alex Clemmer's avatar
      Merge pull request #88 from hausdorff/ks-gen · 651c24cd
      Alex Clemmer authored
      Implement `init`; bring synchronization primitives to spec
      651c24cd
    • Alex Clemmer's avatar
      Make delete, diff, show, update, and validate aware of ksonnet apps · af3f0f6c
      Alex Clemmer authored
      The ksonnet.next design doc specifies the core kubecfg verbs (i.e., the
      ones listed above) to all have the form:
      
        kubecfg <verb> [<env-name>|-f <file-or-dir>]
      
      That is to say, each of these should be able to take either an
      environment name, or a `-f` flag with a list of files and directories to
      apply `verb` on. In the case of the environment, we will apply `verb` to
      every component in the `components/` directory.
      
      This commit implements this behavior for all these verbs.
      af3f0f6c
    • Alex Clemmer's avatar
      Implement `metadata.Manager#ComponentPaths` · bea6b795
      Alex Clemmer authored
      This commit will introduce the ability of the `metadata.Manager` to
      report every file in the `components/` directory.
      
      This is primarily useful when we invoke the Jsonnet VM, as it requires a
      list of files to expand. (The `template.Expander` also handles YAML and
      JSON.)
      bea6b795
    • Alex Clemmer's avatar
      Add a template expander abstraction · 86c5ad02
      Alex Clemmer authored
      This commit will introduce the `template.Expander` abstraction, which is
      meant to abstract over an invocation of the Jsonnet VM. Specifically, it
      provides facilities for users to provide (e.g.) Jpaths, ext vars, and so
      on.
      
      The main justification for this change is:
      
      * We need a common way for the `pkg` and `cmd` packages to interact with
        the Jsonnet VM.
      * The `utils` package is already too much of a catch-all.
      * It's easier to think about an invocation of the Jsonnet VM when we
        additionally encapsulate the parameters we pass to it on every
        invocation in kubecfg.
      86c5ad02
    • Alex Clemmer's avatar
      Implement `init` subcommand · 83799252
      Alex Clemmer authored
      This commit will implement the first version of the `init` subcommand.
      This subcommand initializes a ksonnet application, including generating
      the default directory tree and generating the appropriate ksonnet-lib.
      83799252
    • Alex Clemmer's avatar
      Implement ClusterSpec.data for `version:` scheme · 4664eaa6
      Alex Clemmer authored
      `metadata.ClusterSpec` represents a specification for an abstract
      Kubernetes cluster. For example, `version:1.7.0` represents a Kubernetes
      cluster running a build from 1.7.0. This specification is primarily used
      to generate ksonnet-lib.
      
      This struct exposes a method, `data` that will retrieve the OpenAPI JSON
      that specifies the API for a Kubernetes cluster. Eventually, `data` will
      be able to read a file, pull from a URL, pull from a live cluster, or
      pull a specific version of the API from the official Kubernetes
      repository.
      
      This commit introduces the the last of these options.
      4664eaa6
    • Alex Clemmer's avatar
      Generate ksonnet-lib as part of `metadata.Manager` initialization · ccd74079
      Alex Clemmer authored
      `metadata.Init` is meant to initialize a ksonnet application, including
      its directory structure and the initial versions of various metadata
      files in the tree. But, this implementation is incomplete: currently
      only the directory tree is initialized.
      
      This commit will change init to generate ksonnet-lib as part of the
      initialization process.
      ccd74079
    • Alex Clemmer's avatar
      Vendor ksonnet-lib/ksonnet-gen · ee31939b
      Alex Clemmer authored
      The ksonnet-lib codebase exposes a package, ksonnet-gen, which will
      automatically generate the ksonnet library for a given OpenAPI
      specification of the Kubernetes API.
      
      This commit vendors only the source in the ksonnet-gen package (rather
      than the entire repository) as a dependency in the kubecfg project.
      ee31939b
    • Alex Clemmer's avatar
      Drop support for go 1.7 · 408a5925
      Alex Clemmer authored
      The codegen routines for ksonnet-lib depend on some Go 1.8 features
      (e.g., `sort.Slice`). Once we vendor the dependency, this will cause the
      build to fail perpetually for Go 1.7.
      
      This commit therefore drops support for 1.7, making 1.8 the line of
      supportability. This decision was made together with @anguslees, in
      slack PMs.
      408a5925
    • Angus Lees's avatar
      Trivial debugging log message fixes · b2123661
      Angus Lees authored
      Noticed and then audited in the course of other work.
    • Angus Lees's avatar
      Vendor updates from previous commit · 2ae97e9f
      Angus Lees authored
    • Angus Lees's avatar
      Add basic integration test framework · b01b1647
      Angus Lees authored
      Currently contains basic "update" and "delete" tests.
      More cases will be added in followup patches.
  5. Aug 16, 2017
  6. Aug 15, 2017
    • Alex Clemmer's avatar
      First cut at core app metadata management facilities · 57351df8
      Alex Clemmer authored
      Much of the tooling build around ksonnet applications will be powered by
      metadata presented in a structured directory format. This is similar in
      principle to how Hugo and Rails structure web applications.
      
      This commit will begin the process of introducing a FS-based state
      machine that manages this directory structure. Primarily, this involves
      introducing:
      
      1. Init routines for the directory structure
      2. Routines to search parent directories for a ksonnet application
         (similar to how git does this with repositories)
      
      Initially, the directory structures looks like this:
      
        app-name/
          .ksonnet/   Metadata for ksonnet
          components/ Top-level Kubernetes objects defining application
          lib/        User-written .libsonnet files
          vendor/     Mixin libraries, prototypes
      
      The `.ksonnet` file marks the application root, making it possible to
      search parent directories for the root.
      
      As time continues, more verbs will be introduced to manipulate this
      metadata (including, e.g., vendoring dependencies, searching prototypes,
      and so on).
      57351df8
    • Alex Clemmer's avatar
      Add Afero as vendored dependency · 11efba2b
      Alex Clemmer authored
      Despite being seemingly the most popular mockable FS library, Afero does
      not tag releases in git, and does not appear to have cut a release in
      about a year. Hence, the following considerations were taken into
      account when we vendored the dependency:
      
      * The commits since the last release (2015) appear to be almost entirely
        bug fixes.
      * In the case that we are calling to the OS's FS (rather than, say, a
        testable, memory-mapped FS), the Afero is a simple wrapper, and hence
        introduces little risk into the CLI tool. We verified this by looking
        at the actual source.
      * We opened issue #129 to attempt to nudge the committers into using
        stable software engineering practices (e.g., tagging your releases),
        and we will see how this issue evolves.
      11efba2b
  7. Aug 14, 2017
  8. Aug 09, 2017
  9. Aug 08, 2017
  10. Aug 02, 2017