1. 23 5月, 2016 2 次提交
  2. 18 2月, 2016 1 次提交
    • B
      Cross compilation build pipeline · 2794805d
      bryk 提交于
      With this we can cross compile. The build usage is backwards compatible,
      everything works as before. The addition is that there are some tasks
      with :cross suffix that do cross compilation.
      
      Now dist folder is separated by architecture.
      
      Sample output from ./build/run-gulp-in-docker.sh
      docker-image:canary:cross
      
      ```
      gcr.io/google_containers/kubernetes-dashboard-arm64          canary
      241c95709a4b        About an hour ago   35.04 MB
      gcr.io/google_containers/kubernetes-dashboard-amd64          canary
      3ccd83107b69        About an hour ago   35.37 MB
      gcr.io/google_containers/kubernetes-dashboard-arm            canary
      4533431c6a73        About an hour ago   29.03 MB
      gcr.io/google_containers/kubernetes-dashboard-ppc64le        canary
      3bfa0191f041        About an hour ago   35.53 MB
      gcr.io/google_containers/kubernetes-dashboard-amd64          v0.1.0
      3351515d6e5e        About an hour ago   35.44 MB
      gcr.io/google_containers/kubernetes-dashboard-arm64          v0.1.0
      45e4a971bfc3        About an hour ago   35.44 MB
      gcr.io/google_containers/kubernetes-dashboard-arm            v0.1.0
      1057ae5d74e5        About an hour ago   35.44 MB
      gcr.io/google_containers/kubernetes-dashboard-ppc64le        v0.1.0
      d587f991ac08        About an hour ago   35.44 MB
      ```
      2794805d
  3. 03 2月, 2016 1 次提交
  4. 05 1月, 2016 1 次提交
  5. 18 12月, 2015 1 次提交
  6. 11 12月, 2015 1 次提交
  7. 08 12月, 2015 1 次提交
  8. 25 11月, 2015 2 次提交
  9. 23 11月, 2015 2 次提交
    • B
      Initial implementation for replica set detail view · 795b4af0
      bryk 提交于
      The implementation consists of backend code and sample frontend view
      that dumps the data into an ugly looking table. Subsequent changes will
      implement frontend so that things look pretty.
      795b4af0
    • B
      Connect replica set list and detail views · 6118e85a
      bryk 提交于
      This change connects replica set list and detail views and applies
      RESTful conventions to the API.
      
      Now API and app URLs follow RESTful API conventions. This change is also
      an example of how views hould be connected. See state params and state
      name exports.
      6118e85a
  10. 20 11月, 2015 1 次提交
    • B
      Rename JS files from dot to underscore case · 213d8601
      bryk 提交于
      This is a required change because with dot case we cannot reference
      other modules inside JSDoc `@type` annotations. For example, if you want
      to reference `@type {./deploy.controller.FooType}` does not work,
      because the compiler does not know whether `deploy` is a module or
      `deploy.controller`. Changing dot case to undersocre, camel or dash case
      solves this problem.
      
      I decided to go with underscore case because this is what golang uses
      (e.g., `foo_test.js`) so we'll have higher similarity of backend and
      frontend codebases.
      213d8601
  11. 18 11月, 2015 2 次提交
  12. 13 11月, 2015 1 次提交
  13. 06 11月, 2015 1 次提交
    • B
      JS boilerplate for the deploy app view · 725f72d8
      bryk 提交于
      This is all boilerplate that sets up the page, with some example
      content. This change alsu updates angular material to newer version.
      725f72d8
  14. 04 11月, 2015 1 次提交
  15. 29 10月, 2015 1 次提交
  16. 28 10月, 2015 2 次提交
    • B
      Implement simple chrome operating on ui.router · 4c37e879
      bryk 提交于
      This change implements initial version of the chrome. It uses ui.router
      for routing and state management. The reason to use this router is the
      fact that it is more flexible than stock one. It also resembles Angular2
      router, so hypothetical migration should be easier.
      4c37e879
    • B
      Use standard Angular router instead of the new one · d516d004
      bryk 提交于
      This change modifies a lot of JS, but this is only to prove that the
      code works. Later changes will cleanup the JS more.
      d516d004
  17. 21 10月, 2015 1 次提交
  18. 20 10月, 2015 1 次提交
    • B
      Defie source code folder structure with sample app · eb12a534
      bryk 提交于
      This is a sample Angular application written in ES6 with modules. It has
      sample unit and integration tests. It was generated with a help of
      Yeoman.
      
      Don't mind what the application does right now. I'll use it for a next
      few days to verify that build system is working. Then it will be
      revamped.
      eb12a534