1. 06 Jun, 2020 2 commits
  2. 05 Jun, 2020 1 commit
  3. 04 Jun, 2020 2 commits
  4. 02 Jun, 2020 2 commits
  5. 01 Jun, 2020 2 commits
  6. 29 May, 2020 2 commits
  7. 28 May, 2020 1 commit
  8. 27 May, 2020 2 commits
  9. 26 May, 2020 2 commits
  10. 15 May, 2020 2 commits
  11. 13 May, 2020 3 commits
  12. 12 May, 2020 2 commits
  13. 11 May, 2020 2 commits
  14. 07 May, 2020 8 commits
  15. 06 May, 2020 4 commits
  16. 05 May, 2020 3 commits
    • Darren Shepherd's avatar
      Merge pull request #1696 from ibuildthecloud/executor · b86256bf
      Darren Shepherd authored
      Encapsulate execution logic
      b86256bf
    • Darren Shepherd's avatar
      Add supervisor port · 2f5ee914
      Darren Shepherd authored
      In k3s today the kubernetes API and the /v1-k3s API are combined into
      one http server.  In rke2 we are running unmodified, non-embedded Kubernetes
      and as such it is preferred to run k8s and the /v1-k3s API on different
      ports.  The /v1-k3s API port is called the SupervisorPort in the code.
      
      To support this separation of ports a new shim was added on the client in
      then pkg/agent/proxy package that will launch two load balancers instead
      of just one load balancer.  One load balancer for 6443 and the other
      for 9345 (which is the supervisor port).
      2f5ee914
    • Darren Shepherd's avatar
      Encapsulate execution logic · afd6f6d7
      Darren Shepherd authored
      This moves all the calls to cobra root commands to one package
      so that we can change the behavior of running components as embedded
      or external.
      afd6f6d7