LoginSignup
3
2

More than 5 years have passed since last update.

KubeWeekly #153

Last updated at Posted at 2018-10-23

KubeWeeklyは毎週Kubernetesに関する興味深いニュースを提供しています。(http://bit.ly/kubeweekly )この記事は 2018/10/17に発行された Kube Weekly #153 を読んで、感じたことをメモ的にまとめたものです。
私の勘違いや説明不足による誤解もあるかと思いますので、この記事読んで「おっ」と思ったらURLを辿って本文を確認してください。

The Headlines

2018 Steering Committee Election Results

2018 Steering Committee Election Results
Authors: Jorge Castro (Heptio), Ihor Dvoretskyi (CNCF), Paris Pittman (Google) Results The Kubernetes Steering Committee Election is now complete and the following candidates came ahead to secure two year terms that start immediately: Aaron Crickenberger, Google, @spiffxp Davanum Srinivas, Huawei, @dims Tim St. Clair, Heptio, @timothysc Big Thanks! Steering Committee Member Emeritus Quinton Hoole for his service to the community over the past year. We look forward to The candidates that came forward to run for election.

Kubernetes Steering Committee の投票結果。

Testing Kubernetes RBAC – YLD Engineering Blog – Medium

Testing Kubernetes RBAC – YLD Engineering Blog – Medium
Securing your Kubernetes cluster is one thing, keeping it secure is a continuous uphill struggle. However, with the introduction of new…

RBACが正しく動いているかをテストする方法の紹介。
kubectl can-iをシェルスクリプトのテストフレームワークであるbatsから利用している。

Using Kubeless for Kubernetes Events

Using Kubeless for Kubernetes Events
Serverless computing is all the rage at the moment, and why wouldn’t it be? The idea of deploying code without having to worry about anything like servers, o...

Kubeless( https://kubeless.io/ )を使ってKubernetesのイベントをトリガに処理を実行するデモ。KubernetsのPythonクライアントを使って、KubernetesのイベントをNATS( https://nats.io/ )に送信する。Kubelessでfunctionを登録しておき、NATSのイベントが来たら実行するようにしている。

The Technical

Topology-Aware Volume Provisioning in Kubernetes

Topology-Aware Volume Provisioning in Kubernetes
Author: Michelle Au (Google) The multi-zone cluster experience with persistent volumes is improving in Kubernetes 1.12 with the topology-aware dynamic provisioning beta feature. This feature allows Kubernetes to make intelligent decisions when dynamically provisioning volumes by getting scheduler input on the best place to provision a volume for a pod. In multi-zone clusters, this means that volumes will get provisioned in an appropriate zone that can run your pod, allowing you to easily deploy and scale your stateful workloads across failure domains to provide high availability and fault tolerance.

Kubernetes 1.12でbetaとなった topology-aware dynamic provisioningの紹介。
今まではVolumeのProvisioningとPodのスケジューリングは別々に行われていたが、Zoneが違うとボリュームをマウントできないため、場合によってはPodがUnschedulableな状態になってしまっていたようだ。そこで、Podのスケジューリングが決定したのちにVolumeを該当ZoneにProvisioningする機能が実装された。

Ballerina Channels – Vinod Kavinda – Medium

Ballerina Channels – Vinod Kavinda – Medium
If you are new to Ballerina, first you need to go to the ballerina.io and learn the basic moves before you learn the advance stuff!

Ballerina( https://ballerina.io/ )という言語のChannelという機能の紹介。他にもWorker Interactionsというメッセージ送信の機構があるようだが、使いどころが違うようだ。
Ballerinaあまり知らないので、違いがよくわからなかった。

Cloud Native Programming Language
Ballerina makes it easy to create resilient services that integrate and orchestrate transactions across distributed endpoints.

Polyaxon, Argo and Seldon for model training, package and deployment in Kubernetes | Daniel Rodriguez

機械学習をKubernetes上で実行するための手順の紹介。
Polyaxon( https://polyaxon.com/ ), Argo( https://argoproj.github.io/ ),s2i( https://github.com/openshift/source-to-image ), Seldon( https://www.seldon.io/ )を利用して機械学習のモデルを管理する。
それぞれを個別にセットアップしているので、かなり煩雑。記事内でも紹介されているがKubeFlowなどを利用する方が良さそうとのことでした。

Set Up a CI/CD Pipeline with a Jenkins Pod in Kubernetes (Part 2)

Set Up a CI/CD Pipeline with a Jenkins Pod in Kubernetes (Part 2)
In Part 1 of our series, we got our local Kubernetes cluster up and running with Docker, Minikube, and kubectl. We set up an image repository, and tried building, pushing, and deploying a container image with code changes we made to the Hello-Kenzan app. It’s now time to automate this process.

minikubeにJenkinsをデプロイして、CI/CDを実現する方法の解説。

Adopting Istio in Your Kubernetes Clusters – uptime 99 – Medium

Adopting Istio in Your Kubernetes Clusters – uptime 99 – Medium
Learn about some of the sharp edges before you install Istio service mesh on your Kubernetes clusters.

istio( https://istio.io/ )をKubernetesクラスタに入れる方法と、気になる昨日の紹介。

  • mTLSのPERMISSIVEモード
    • 段階的にmTLSを有効にする際に有効
    • probeもmTLSの影響を受けるので注意
  • edge filteringは設定が難しいし、Hostヘッダで偽装できるので、無効にする方法を紹介している。 
  • istioではcert-managerのような仕組みが現状は使えない

などなど

Using Kubeflow for Analyzing Financial Time Series: Part I

Using Kubeflow for Analyzing Financial Time Series: Part I
Kubeflow is an open-source project dedicated to making deployments of machine learning (ML) workflows on Kubernetes simple, portable and…

Kubeflowのチュートリアル。
JupyterNotebookやksonnetを駆使してモデルをチューニングする。

Kubernetes: deploy Laravel the easy way – ITNEXT

Kubernetes: deploy Laravel the easy way – ITNEXT
Laravel is an excellent framework for developing PHP applications. Whether you need to prototype a new idea, develop an MVP (Minimum…

LaravelのWebアプリをminikubeにデプロイするチュートリアル。
特別なところはLaravel用のDockerfileくらいで、あとは普通にKubernetesの使い方。

Customizing Kubernetes Logging (Part 1) – Google Cloud Platform - Community – Medium

Customizing Kubernetes Logging (Part 1) – Google Cloud Platform - Community – Medium
One of the most powerful tools at your disposal when debugging applications in production are the logs. They’re very easy to create, give…

GKEでStackdriverを使いログを構造化する方法の紹介。
正規表現で、ログのフォーマットを指定すると構造化してくれる。構造化できるとBigQueryなどで扱いやすい。

Manage ML Deployments Like A Boss: Deploy Your First AB Test With Sklearn, Kubernetes, and…

Manage ML Deployments Like A Boss: Deploy Your First AB Test With Sklearn, Kubernetes, and…
Read This First — Summary

機械学習のモデルを複数つくって、それらに対してABテストを実施する方法のチュートリアル。
Kubeflowなどは使わず、必要なDeploymentをそれぞれデプロイする方式。
sklarnでモデルを作って、s2iでコンテナに変換
Seldon-coreでABテストを実現している。

Tooling Spotlight

ynqa/kubernetes-rust

ynqa/kubernetes-rust
Rust client for Kubernetes. Contribute to ynqa/kubernetes-rust development by creating an account on GitHub.

KubernetesのRustクライアント

GoogleContainerTools/krew

GoogleContainerTools/krew
📦 The package manager for "kubectl plugins". Contribute to GoogleContainerTools/krew development by creating an account on GitHub.

kubectl pluginのパッケージマネージャのようです。brewのような感じでpluginを探して、インストールすることができるようです。

The Editorial

Kubernetes 2018 North American Contributor Summit

Kubernetes 2018 North American Contributor Summit
Authors: Bob Killen (University of Michigan) Sahdev Zala (IBM), Ihor Dvoretskyi (CNCF) The 2018 North American Kubernetes Contributor Summit to be hosted right before KubeCon + CloudNativeCon Seattle is shaping up to be the largest yet. It is an event that brings together new and current contributors alike to connect and share face-to-face; and serves as an opportunity for existing contributors to help shape the future of community development. For new community members, it offers a welcoming space to learn, explore and put the contributor workflow to practice.

KubeCon + CloudNativeConの前に開催されるContributer Summitについて

New in Fission: Live-Reload, Record-Replay, Canary Deployments, Prometheus integration

New in Fission: Live-Reload, Record-Replay, Canary Deployments, Prometheus integration
Today we’re really excited to launch a set of new features for Fission, our open source Kubernetes-native serverless framework. These features are all designed to help you improve the quality and reliability of your serverless applications on Kubernetes. Serverless architectures have obvious productivity advantages. You can get your apps up and running quickly, reducing the total lead time to ship your new application. However, to make this “production ready”, serverless architecture needs to be not just about moving fast, but also about moving fast safely, and at scale.

ServerlessフレームワークのひとつであるFission( https://fission.io/ )の新機能の紹介。

  • Live reload: 手元のソースコードを変更すると自動的にfunctionを適用する機能
  • Record-replay: テストなどで実施した関数の実行リクエストを覚えておいて、後から再度実行できる機能
  • Automated Canary Deployments: 自動でカナリアリリースを行い、自動でローリングアップデートを制御する。
  • Prometheus Integration: Functionのメトリクスが収集できる機能

GKE Container-Native Load Balancing, with Ines Envid and Neha Pattan

GKE Container-Native Load Balancing, with Ines Envid and Neha Pattan

Kubernetes Podcastの紹介。GKEでのロードバランサがVM単位ではなくPod単位で負荷分散するようになった話について。
(聞いていない)

An introduction to Ansible Operators in Kubernetes

An introduction to Ansible Operators in Kubernetes
The new Operator SDK makes it easy to create a Kubernetes controller to deploy and manage a service or application in a cluster.

Operator SDKがansibleを使ったOperatorの作成をサポートした話
operator-sdk/user-guide.md at master · operator-framework/operator-sdk · GitHub

AnsibleからもKubernetesのリソースが扱えるようになっているらしい
k8s - Manage Kubernetes (K8s) objects — Ansible Documentation

Spinnaker: The Kubernetes of Continuous Delivery

Spinnaker: The Kubernetes of Continuous Delivery
Comparing Spinnaker and Kubernetes in this way is somewhat unfair to both projects. The scale, scope, and magnitude of these technologies are different, but parallels can still be drawn.

Spinnaker( https://www.spinnaker.io/ )の歴史などを紹介する記事。あまりKubernetesの話は出てこない。

"DevOps is the new normal, cloud is the new infrastructure & Kubernetes is the new operating system" - JAXenter

"DevOps is the new normal, cloud is the new infrastructure & Kubernetes is the new operating system" - JAXenter
We are now witnessing the democratization of DevOps. We talked to Sacha Labourey, CEO and founder at CloudBees about all this and more.

CloudBeeのCEOがJenkinsX( https://jenkins.io/projects/jenkins-x/ )の紹介と、DevOpsについてインタビューを受けている。

Kubernetes in the DevOps Space: Everything You Need to Know - DZone DevOps

Kubernetes in the DevOps Space: Everything You Need to Know - DZone DevOps
See how the Kubernetes container orchestration and delivery automation platform can strengthen DevOps implementation for software development in the enterprise.

DevOpsとコンテナ、Kubernetesについての関係性の説明。

6 charts take the confusion out of Kubernetes

6 charts take the confusion out of Kubernetes
Containers are an increasingly popular tool for businesses to provision workloads on the cloud and maximize resources. 

6つのグラフからコンテナやKubernetesの流行について論じている。

Best practices and anti-patterns for containerized deployments | TechBeacon

Best practices and anti-patterns for containerized deployments | TechBeacon
Kubernetes is all the rage for cloud apps, but follow these best practices—and don't fall into these traps—as you're making the leap.

コンテナ化の6つのベストプラクティスと6つのアンチパターンの紹介。
どういうアプリケーションをコンテナ化すべきか、と言った話から、どういう組織で実施すべきかと言った話まで。

Observability Practitioners Summit 2018 Schedule

Observability Practitioners Summit 2018 Schedule
Check out the schedule for Observability Practitioners Summit 2018

Observability Practitioners Summit 2018のスケジュール

バックナンバー

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2