Skip to content
  1. Dec 21, 2017
  2. Dec 20, 2017
  3. Dec 19, 2017
  4. Dec 15, 2017
  5. Dec 14, 2017
  6. Dec 12, 2017
  7. Dec 11, 2017
  8. Dec 10, 2017
  9. Dec 08, 2017
  10. Dec 07, 2017
  11. Dec 06, 2017
  12. Dec 05, 2017
  13. Dec 04, 2017
  14. Nov 30, 2017
    • Jean-Marie F's avatar
      Terraform - Remove the need for region specific reference data (#1962) · ca8a9c60
      Jean-Marie F authored
      * Dynamically retrieve aws_bastion_ami latest reference by querying AWS rather than hard coded
      
      * Dynamically retrieve the list of availability_zones instead of needing to have them hard coded
      
      * Limit availability zones to first 2, using slice extrapolation function
      
      * Replace the need for hardcoded variable "aws_cluster_ami" by the data provided by Terraform
      
      * Move ami choosing to vars, so people don't need to edit create infrastructure if they want another vendor image (as suggested by @atoms)
      
      * Make name of the data block agnostic of distribution, given there are more than one distribution supported
      
      * Add documentation about other distros being supported and what to change in which location to make these changes
      ca8a9c60
  15. Nov 29, 2017
    • Matthew Mosesohn's avatar
      a0225507
    • Steven Hardy's avatar
      Allow setting --bind-address for apiserver hyperkube (#1985) · d39a88d6
      Steven Hardy authored
      * Allow setting --bind-address for apiserver hyperkube
      
      This is required if you wish to configure a loadbalancer (e.g haproxy)
      running on the master nodes without choosing a different port for the
      vip from that used by the API - in this case you need the API to bind to
      a specific interface, then haproxy can bind the same port on the VIP:
      
      root@overcloud-controller-0 ~]# netstat -taupen | grep 6443
      tcp        0      0 192.168.24.6:6443       0.0.0.0:*               LISTEN      0          680613     134504/haproxy
      tcp        0      0 192.168.24.16:6443      0.0.0.0:*               LISTEN      0          653329     131423/hyperkube
      tcp        0      0 192.168.24.16:6443      192.168.24.16:58404     ESTABLISHED 0          652991     131423/hyperkube
      tcp        0      0 192.168.24.16:58404     192.168.24.16:6443      ESTABLISHED 0          652986     131423/hyperkube
      
      This can be achieved e.g via:
      
      kube_apiserver_bind_address: 192.168.24.16
      
      * Address code review feedback
      
      * Update kube-apiserver.manifest.j2
      d39a88d6
Loading