GithubHelp home page GithubHelp logo

liouk / cluster-api-provider-alibaba Goto Github PK

View Code? Open in Web Editor NEW

This project forked from openshift/cluster-api-provider-alibaba

0.0 0.0 0.0 27.45 MB

OpenShift Machine API provider for Alibaba

License: Apache License 2.0

Shell 9.69% Go 88.48% Makefile 1.64% Dockerfile 0.20%

cluster-api-provider-alibaba's Introduction

OpenShift cluster-api-provider-alibaba

This repository hosts an implementation of a provider for AlibabaCloud for the OpenShift machine-api.

This provider runs as a machine-controller deployed by the machine-api-operator

How to build the images in the RH infrastructure

The Dockerfiles use as builder in the FROM instruction which is not currently supported by the RH's docker fork (see kubernetes-sigs/kubebuilder#268). One needs to run the imagebuilder command instead of the docker build.

Note: this info is RH only, it needs to be backported every time the README.md is synced with the upstream one.

Deploy machine API plane with minikube

  1. Install kvm

    Depending on your virtualization manager you can choose a different driver. In order to install kvm, you can run (as described in the drivers documentation):

    $ sudo yum install libvirt-daemon-kvm qemu-kvm libvirt-daemon-config-network
    $ systemctl start libvirtd
    $ sudo usermod -a -G libvirt $(whoami)
    $ newgrp libvirt

    To install to kvm2 driver:

    curl -Lo docker-machine-driver-kvm2 https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-kvm2 \
    && chmod +x docker-machine-driver-kvm2 \
    && sudo cp docker-machine-driver-kvm2 /usr/local/bin/ \
    && rm docker-machine-driver-kvm2
  2. Deploying the cluster

    To install minikube v1.1.0, you can run:

    $ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v1.1.0/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
    

    To deploy the cluster:

    $ minikube start --vm-driver kvm2 --kubernetes-version v1.13.1 --v 5
    $ eval $(minikube docker-env)
    
  3. Deploying machine API controllers

    For development purposes the AlibabaCloud machine controller itself will run out of the machine API stack. Otherwise, docker images needs to be built, pushed into a docker registry and deployed within the stack.

    To deploy the stack:

    kustomize build config | kubectl apply -f -
    
  4. Deploy secret with AlibabaCloud credentials

    AlibabaCloud actuator assumes existence of a secret file (references in machine object) with base64 encoded credentials:

    apiVersion: v1
    kind: Secret
    metadata:
      name: alibabacloud-credentials-secret
      namespace: default
    type: Opaque
    data:
      accessKeyID: FILLIN
      accessKeySecret: FILLIN

    Save the above resource as secret.yaml and then apply it:

    kubectl apply -f secret.yaml

Test locally built AlibabaCloud actuator

  1. Tear down machine-controller

    Deployed machine API plane (machine-api-controllers deployment) is (among other controllers) running machine-controller. In order to run locally built one, simply edit machine-api-controllers deployment and remove machine-controller container from it.

  2. Build and run AlibabaCloud actuator outside of the cluster

    $ go build -o bin/machine-controller-manager github.com/openshift/cluster-api-provider-alibaba/cmd/manager
    $ ./bin/machine-controller-manager --kubeconfig ~/.kube/config --logtostderr -v 5 -alsologtostderr

    If running in container with podman, or locally without docker installed, and encountering issues, see hacking-guide.

  3. Deploy k8s apiserver through machine manifest:

    To deploy user data secret with kubernetes apiserver initialization (under config/master-user-data-secret.yaml):

    $ kubectl apply -f config/master-user-data-secret.yaml

    To deploy kubernetes master machine (under config/master-machine.yaml):

    $ kubectl apply -f config/master-machine.yaml
  4. Join worker node through machine manifest:

    To deploy user data secret with kubernetes apiserver initialization (under config/worker-user-data-secret.yaml):

    $ kubectl apply -f config/worker-user-data-secret.yaml

    To deploy kubernetes worker machine (under config/worker-machine.yaml):

    $ kubectl apply -f config/worker-machine.yaml
  5. Pull kubeconfig from created master machine

    The master public IP can be accessed from AlibabaCloud Portal. Once done, you can collect the kube config by running:

    $ ssh -i SSHPMKEY root@PUBLICIP 'sudo cat /root/.kube/config' > kubeconfig
    $ kubectl --kubeconfig=kubeconfig config set-cluster kubernetes --server=https://PUBLICIP:6443
    

    Once done, you can access the cluster via kubectl. E.g.

    $ kubectl --kubeconfig=kubeconfig get nodes

Deploy machine API plane with AlibabaCloud ACK Cluster

  1. Creating ACK Cluster

    You can create a Kubernetes cluster using the CLI, TerraForm, or ACK console

    CLI Document:

    https://www.alibabacloud.com/help/doc-detail/198808.htm
    

    TerraForm Document:

    https://www.alibabacloud.com/help/doc-detail/252824.htm
    

    ACK Console Document:

    https://www.alibabacloud.com/help/doc-detail/86488.htm
    
  2. Deploying machine API controllers

    For development purposes the AlibabaCloud machine controller itself will run out of the machine API stack. Otherwise, docker images needs to be built, pushed into a docker registry and deployed within the stack.

    To deploy the machine crds:

    $ kubectl apply -f config/crds/

    To deploy the machine rbac:

    $ kubectl apply -f config/rbac/

    To deploy the machine controller:

    $ kubectl apply -f config/controllers/
  3. Deploy secret with AlibabaCloud credentials

    AlibabaCloud actuator assumes existence of a secret file (references in machine object) with base64 encoded credentials:

    apiVersion: v1
    kind: Secret
    metadata:
      name: alibabacloud-credentials-secret
      namespace: default
    type: Opaque
    data:
      accessKeyID: FILLIN
      accessKeySecret: FILLIN

    Save the above resource as secret.yaml and then apply it:

    $ kubectl apply -f secret.yaml
  4. Deploy k8s apiserver through machine manifest:

    To deploy user data secret with kubernetes apiserver initialization (under config/master-user-data-secret.yaml):

    $ kubectl apply -f config/master-user-data-secret.yaml

    To deploy kubernetes master machine (under config/master-machine.yaml):

    $ kubectl apply -f config/master-machine.yaml
  5. Join worker node through machine manifest:

    To deploy user data secret with kubernetes apiserver initialization (under config/worker-user-data-secret.yaml):

    $ kubectl apply -f config/worker-user-data-secret.yaml

    To deploy kubernetes worker machine (under config/worker-machine.yaml):

    $ kubectl apply -f config/worker-machine.yaml
  6. Pull kubeconfig from created master machine

    The master public IP can be accessed from AlibabaCloud Portal. Once done, you can collect the kube config by running:

    $ ssh -i SSHPMKEY root@PUBLICIP 'sudo cat /root/.kube/config' > kubeconfig
    $ kubectl --kubeconfig=kubeconfig config set-cluster kubernetes --server=https://PUBLICIP:6443
    

    Once done, you can access the cluster via kubectl. E.g.

    $ kubectl --kubeconfig=kubeconfig get nodes

Add worker nodes to the ACK cluster via Machine-API

  1. Deploy secret with AlibabaCloud worker nodes userdata

    AlibabaCloud actuator assumes existence of a secret file (references in machine object) with base64 encoded userdata:

    How do I get the script to add worker nodes? You can refer to the documentation

    https://www.alibabacloud.com/help/doc-detail/86919.htm
    

    And then generate the userdata:

    $ echo '#!/bin/bash  <Your worker node script>' | base64

    Replace FILLIN with userdata:

    apiVersion: v1
    kind: Secret
    metadata:
      name: worker-user-data-secret
      namespace: default
    type: Opaque
    data:
     userData: FILLIN

    Save the above resource as worker-user-data-secret.yaml and then apply it:

    kubectl apply -f worker-user-data-secret.yaml
  2. Add worker machine to ACK Cluster

apiVersion: machine.openshift.io/v1beta1
kind: Machine
metadata:
  name: alibabacloud-actuator-testing-machine
  namespace: default
  labels:
    machine.openshift.io/cluster-api-cluster: alibabacloud-actuator-k8s
spec:
  metadata:
    labels:
      node-role.kubernetes.io/infra: ""
  providerSpec:
    value:
      apiVersion: alibabacloudproviderconfig.openshift.io/v1
      kind: AlibabaCloudMachineProviderConfig
      instanceType: FILLIN
      imageId: FILLIN
      regionId: FILLIN
      zoneId: FILLIN
      securityGroupId: FILLIN
      vpcId: FILLIN
      vSwitchId: FILLIN
      systemDiskCategory: FILLIN
      systemDiskSize: FILLIN
      internetMaxBandwidthOut: FILLIN
      password: FILLIN
      tags:
        - key: openshift-node-group-config
          value: node-config-node
        - key: host-type
          value: node
        - key: sub-host-type
          value: default
      userDataSecret:
        name: alibabacloud-worker-user-data-secret
      credentialsSecret:
        name: alibabacloud-credentials-secret
 Save the above resource as **_worker-machine-with-user-data.yaml_** and then apply it:
kubectl apply -f worker-machine-with-user-data.yaml

Once done, you can describe the machine via kubectl. E.g.

$ kubectl  get machine

cluster-api-provider-alibaba's People

Contributors

damdo avatar elmiko avatar fedosin avatar joelspeed avatar lobziik avatar menglingwei avatar openshift-ci[bot] avatar openshift-merge-bot[bot] avatar openshift-merge-robot avatar radekmanak avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.