--- /dev/null
+..
+ Licensed under the Apache License, Version 2.0 (the "License"); you may
+ not use this file except in compliance with the License. You may obtain
+ a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ License for the specific language governing permissions and limitations
+ under the License.
+
+ Convention for heading levels in Integrated Edge Cloud documentation:
+
+ ======= Heading 0 (reserved for the title in a document)
+ ------- Heading 1
+ ~~~~~~~ Heading 2
+ +++++++ Heading 3
+ ''''''' Heading 4
+
+ Avoid deeper levels because they do not render well.
+
+
+====================
+SEBA on Arm Use Case
+====================
+
+.. _SEBA: https://wiki.opencord.org/display/CORD/SEBA
+
+SDN-Enabled Broadband Access (SEBA) is an Exemplar Platform being built by the ONF and CORD community,
+which would also be a sample use case of IEC.
+
+We would enable SEBA on arm with the native installation method for SEBA by great efforts.
+
+Sub-Folder Introduction
+-----------------------
+install: installation scripts and files for SEBA-on-arm
+src_repo: the source code repository that SEBA-on-arm uses
+docker: dockfiles and related scripts to build and manage the docker images used in SEBA-on-arm
+charts: Helm charts used in the SEBA-on-arm installation
--- /dev/null
+FROM alpine:3.6
+
+LABEL MAINTAINER="Sergii Nuzhdin <ipaq.lw@gmail.com@gmail.com>"
+
+ENV KUBE_LATEST_VERSION="v1.13.0"
+
+RUN apk add --update ca-certificates \
+ && apk add --update -t deps curl \
+ && apk add --update gettext \
+ && curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \
+ && chmod +x /usr/local/bin/kubectl \
+ && apk del --purge deps \
+ && rm /var/cache/apk/*
--- /dev/null
+FROM alpine:3.6
+
+ENV KUBE_LATEST_VERSION="v1.13.0"
+
+RUN apk add --update ca-certificates \
+ && apk add --update -t deps curl \
+ && apk add --update gettext \
+ && curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/arm64/kubectl -o /usr/local/bin/kubectl \
+ && chmod +x /usr/local/bin/kubectl \
+ && apk del --purge deps \
+ && rm /var/cache/apk/*
--- /dev/null
+# kubectl-deployer-docker
+
+Alpine based image with kubectl and gettext used in gitlab-ci build steps.
+
+http://blog.lwolf.org/post/continuous-deployment-to-kubernetes-from-gitlab-ci/
+
+docker image location: https://hub.docker.com/r/lwolf/kubectl_deployer/
+
+| Tag | Alpine | Kubectl |
+| :----: | :----: | :-----: |
+| latest | 3.6 | 1.13.0 |
+| 1.13.0 | 3.6 | 1.13.0 |
+| 1.10.0 | 3.6 | 1.10.0 |
+| 1.8.9 | 3.6 | 1.8.9 |
+| 0.4 | 3.6 | 1.6.4 |
+| 0.3 | 3.4 | 1.6.4 |
+| 0.2 | 3.4 | 1.5.2 |