ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
DevOps ¨C CI/CD ????
Jenkins, git, GitHub, and Slack
? 2020 NetApp, Inc. All rights reserved.
SeungYong Baek
Senior Solutions Engineer / NetApp Korea
August 2021
??? ?? ?¡­ ? DevOps?
? Source Code Management
? git, GitHub
? Continuous Integration(CI) /
Continuous Delivery(CD)
? Jenkins
? Collaboration and Communication
? Slack
? Demo ¨C git, GitHub, Jenkins, Slack
? NetApp with DevOps
? 2020 NetApp, Inc. All rights reserved.
2
? 2020 NetApp, Inc. All rights reserved.
3
??? ????? ??, ??, ? ????? ?? ??? ??? ??? ???
DevOps?
DevOps??
DevOps? ?????? ??? ??? ??? ???? ?? ?? ??? ????? ???? ??? ??? ?? ??? ???? ???
???? ????????.
DevOps ??? ?????? ?? ?(Dev)? ?? IT ?? ?(Ops) ? ?? ???? ???? ??????, ??, ??, ??? ? ????
?????.
"Dev"? "Ops" ?? ??? ??? ??? ?? ????? ???? ??, ??, ??? ? ??? ??? ??, ?? ? ???? ?????
??? DevOps ??????? ?? ??? ?? ?????. ??? ??? ?? ??, ??, ??? ? ??? ?? ???? ?? ???
??? ???? ???? ???. ??? ??? ???? ?? ? ??? ??? ?? ?? ?? ?? ??? ? ??? ????? ????
? ??? ????. ¨C NetApp ¨C
DevOps ??
??(Dev)? ??(Ops)? ???? DevOps? ???? ????? ??? ????? ???? ??, ???? ? ??? ??????.
??? DevOps? ?? ?????? DevOps? ??, IT ??, ?? ?????, ?? ? ??? ?? ????? ???? ?? ????
???? ?? ????? ??? ??? ??? ? ??? ?????. DevOps ??? ??? ??? DevOps ??? ???? ?? ??
?? ??? ?? ????? ????, ?? ???? ??????? ????, ???? ??? ? ?? ??? ? ????. ¨C Microsoft ¨C
DevOps ??
DevOps? ??? ??? ??? ??? ?? ???? ??? ???? ????? ?? ?? ??, ???, ??? ??? ?? ??
?????. ??? ?? ??? ??? ????? IT ???? ???? ??? ??? ?????. DevOps? ??? ??????? ??
???? ???? ?????? ? ???? ???? ?? ?????. ¨C Redhat ¨C
https://www.netapp.com/ko/devops-solutions/what-is-devops/
https://azure.microsoft.com/ko-kr/overview/what-is-devops/
https://www.redhat.com/ko/topics/devops
? 2020 NetApp, Inc. All rights reserved.
4
DevOps? ?? ??, ??, ??? ??? ?? ??? ??? ???.
DevOps ??
https://www.netapp.com/ko/devops-solutions/what-is-devops/
https://aws.amazon.com/ko/devops/what-is-devops/
? 2020 NetApp, Inc. All rights reserved.
5
?? ??? ? ?? ? ?? ??
DevOps ????? ?
https://devops.com/the-promise-of-ai-for-devops-in-2021/
https://www.opsera.io/blog/top-25-devops-tools-that-you-need-to-know
AWS CodeBuild
AWS CodeCommit AWS CodeDeploy
AWS Cloud Development Kit
(AWS CDK)
? 2020 NetApp, Inc. All rights reserved.
6
CI / CD? DevOps? ?? ?? ? ? ??
Continuous Integration(CI) / Continuous Delivery(CD)?
??? ?? (Continuous Integration)
CI/CD? "CI"? ???? ?? ??? ????? ???? ??(Continuous Integration)? ?????. CI? ?????
??? ?? ??????? ?? ??? ?? ?? ??? ????? ?? ? ????? ?? ?????? ?????
?? ?? ???? ??? ?????? ??? ??? ?? ??? ? ?? ?? ??? ? ?? ??? ??? ? ????.
??? ?? (Continuous Delivery)
CI/CD? "CD"? ???? ??? ??(Continuous Delivery) ?/?? ???? ??(Continuous Deployment)? ???? ?
? ??? ?? ????? ?????. ? ?? ?? ?? ?????? ?? ??? ?? ???? ???? ??? ???
?? ???? ????? ???? ???? ?? ??? ????? ???.
?? vs ??
??? ??(Continuous Delivery)
? ??? ??? ?????? ???? ???
? ??????? ??? ??? ?? ??? ??
??? ??(Continuous Deployment)
? ??????? ?????? ????? ??? ???
https://www.redhat.com/ko/topics/devops/what-is-ci-cd
? 2020 NetApp, Inc. All rights reserved.
7
git, GitHub, Jenkins, Slack, AWS EC2, Docker
CI/CD ?? ??
Jenkins ??
AWS EC2
1. git push
2. git commit / push ??
2. git fetch
3. ??? ??? ??
4. EC2 ???(SSH)
5. ?? ??
Jenkins Pipeline demo?? ??
? 2020 NetApp, Inc. All rights reserved.
8
git ? GitHub ??
Source Code Management
git? ??? ??? ????? ???? ?? ?? ???? ??
?? ???? ??? ???? ?? ?? ?? ?? ?????.
GitHub? ?? ?? ?? ?? git ??? ???? ???? ?
?????.
Working
Directory
Staging
Area
Local
Repository
Remote
Repository
(Public or Private)
Working
Directory
Staging
Area
Local
Repository
Working
Directory
Staging
Area
Local
Repository
git add git commit git push/pull
git clone
https://ko.wikipedia.org/wiki/%EA%B9%83_(%EC%86%8C%ED%94%84%ED%8A%B8%EC%9B%A8%EC%96%B4)
https://ko.wikipedia.org/wiki/%EA%B9%83%ED%97%88%EB%B8%8C
? 2020 NetApp, Inc. All rights reserved.
9
git ? GitHub ?? #1
Source Code Management ??
1. git, gcc ??
$ sudo apt install git gcc
2. GitHub ?? - https://github.com/
3. GitHub remote repository ??
- repository ?? ?? Quick setup ??
? 2020 NetApp, Inc. All rights reserved.
10
git ? GitHub ?? #2
Source Code Management ??
4. Personal Access Token ??
- Settings ¡ú Developer settings ¡ú Personal access token
- API? CLI ??? ???? ??
- ??? ? ?? ????? ??? ??
- ?? ???? ??? ? ?? ?? ??
https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token
? 2020 NetApp, Inc. All rights reserved.
11
git ? GitHub ?? #3
Source Code Management ??
5. git ??? ? GitHub remote repository ??
$ mkdir cicd-demo ; cd cicd-demo
$ echo "# CICD-demo - Jenkins with GitHub." > README.md
$ vi hello.c
##### hello.c #####
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf("Hello!n");
printf("CICD-demo - Jenkins with GitHub #1n");
exit(0);
}
? 2020 NetApp, Inc. All rights reserved.
12
git ? GitHub ?? #4
Source Code Management ??
5. git ??? ? GitHub remote repository ??
$ git init
$ git add README.md hello.c
$ git config --global user.name "SeungYong-Baek"
$ git config --global user.email "seungyong.baek@gmail.com"
$ git config --list
$ git commit -m "First Commit"
$ git status
$ git log
$ git branch -M main
$ git remote add origin https://github.com/SeungYong-Baek/cicd-demo.git
** ????? ??? PAT ??
$ git push -u origin main
$ git status
$ git log
6. GitHub remote repository ??
? 2020 NetApp, Inc. All rights reserved.
13
Jenkins ??
Continuous Integration / Continuous Delivery
https://www.jenkins.io/doc/
https://docs.microsoft.com/ko-kr/azure/developer/jenkins/overview
Jenkins? ????? ?????
?? CI/CD(???? ?? ? ??)?
???? ? ???? ?? ?? ??
?? ??? ?????.
Azure?? Jenkins ???
?????? Azure ????
???? ?? Jenkins ??? ???
? ????.
??????? CI/CD? Azure?
????? ?? Jenkins ??? ??
??? ? ????.
? 2020 NetApp, Inc. All rights reserved.
14
Jenkins ¨C ?? ?? ??? #1
Jenkins CI/CD ??
1. JDK ??
$ sudo apt install openjdk-11-jdk
2. Jenkins ????
- WAR ?? ? OS? ??? ?? ??
- WAR(Web application ARchive, ? ?????? ????)
- JAR(Java Archive, ?? ????)
- ? ??? ?? ??? WAR ?? ??
** WAR ??? ?? ??
$ jar tvf jenkins.war
https://www.jenkins.io/download/
https://www.jenkins.io/doc/book/installing/
? 2020 NetApp, Inc. All rights reserved.
15
Jenkins ¨C ?? ?? ??? #2
Jenkins CI/CD ??
3. Jenkins ??
- Jenkins ?? ? ?? ?? ? ?? ?? ??
$ java -jar jenkins.war
** Setup Wizard? ???? ?? Admin ????? ??
? 2020 NetApp, Inc. All rights reserved.
16
Jenkins ¨C ?? ?? ??? #3
Jenkins CI/CD ??
3. Jenkins ??
- Jenkins ?? ? ?? ?? ? ?? ?? ??
$ java -jar jenkins.war
** Setup Wizard? ???? ?? Admin ????? ??
? 2020 NetApp, Inc. All rights reserved.
17
Jenkins ¨C ?? ?? ??? #4
Jenkins CI/CD ??
4. Jenkins Global Tool ??
- Jenkins ?? ¡ú Global Tool Configuration ¡ú JDK, Git
? 2020 NetApp, Inc. All rights reserved.
18
Jenkins ¨C ?? ?? ??? #5
Jenkins CI/CD ??
5. ???? ?? ? ?? ?? ??
- ??? Item ¡ú Freestyle Project
? 2020 NetApp, Inc. All rights reserved.
19
Jenkins ¨C ?? ?? ??? #6
Jenkins CI/CD ??
5. ???? ?? ? ?? ?? ??
- ??: ??? + Unit ??? + ???
- GitHub ??? ?? Credential ?? ??
- SCM ???? ??? GitHub PAT ??
- ?? ??: 10? ?? SCM? Polling
- ?? ??: GitHub hook? ??
- ??: Shell ?? gcc ??
- ???? Make, Gradle ?? ??? ?? ? ??
$ make all
# Makefile
.SUFFIXES : .c .o
OBJECTS = main.o print.o input.o
SRCS = $(OBJECTS:.o=.c)
CC = gcc
CFLAGS = -g
TARGET = test helloworld
all : $(TARGET)
helloworld : helloworld.c
$(CC) -o $@ $<
test : $(OBJECTS)
$(CC) -o $@ $(OBJECTS)
clean :
$(RM) $(OBJECTS) $(TARGET) helloworld.o core
main.o : main.c common.h
print.o : print.c common.h
input.o : input.c common.h
? 2020 NetApp, Inc. All rights reserved.
20
Jenkins ¨C ?? ?? ??? #7
Jenkins CI/CD ??
5. ???? ?? ? ?? ?? ??
- ?? ?? ??, ??? ??? ??
- ?? ?? ? ?????? ??
? 2020 NetApp, Inc. All rights reserved.
21
Jenkins ¨C ?? ?? ??? #8
Jenkins CI/CD ??
6. ?? ?? ?? ?? ?? ?? ??
- ?? ?? ?? ? GitHub? push
- Jenkins? repository? ?? ??? Polling?? ?? ??
? 2020 NetApp, Inc. All rights reserved.
22
Jenkins ¨C ?? ?? ??? #9
Jenkins CI/CD ??
6. ?? ?? ?? ?? ?? ?? ??
- ?? ?? ? ?????? ??
? 2020 NetApp, Inc. All rights reserved.
23
Jenkins ¨C SSH ?? ??? #1
Jenkins CI/CD ??
** AWS EC2 ????? ??? ???? ??(Artifact?? ??)
** EC2 ????? SSH ? ??
1. ???? ??
- Publish Over SSH ???? ?? ? ??
- ??? ?? ?? ????? ???? ?? ???? ??
? 2020 NetApp, Inc. All rights reserved.
24
Jenkins ¨C SSH ?? ??? #2
Jenkins CI/CD ??
2. ???? ??
- Jenkins ?? ¡ú System Configuration ¡ú Publish over SSH
- SSH ? ? ?? ?? ??
? 2020 NetApp, Inc. All rights reserved.
25
Jenkins ¨C SSH ?? ??? #3
Jenkins CI/CD ??
3. ???? ?? ??
- ?? ? ?? ??
- ??? ??? ?? ? ?? ?? ??
? 2020 NetApp, Inc. All rights reserved.
26
Jenkins ¨C SSH ?? ??? #4
Jenkins CI/CD ??
4. ?? ?? ? ?? ??
- ¡°?? ?? ??? / 6. ?? ?? ?? ?? ?? ?? ??¡±
- ?? ?? ? ?????? ??
? 2020 NetApp, Inc. All rights reserved.
27
Slack ??
Collaboration and Communication
Slack?? ??????
Slack? ???? ??? ????? ??? ???
????. Slack? ???? ?? ?? ??? ???
?? ???? ??? ???????? ???
??? ? ????.
https://slack.com/intl/ko-kr/
https://slack.com/intl/ko-kr/help/articles/115004071768-Slack%EC%9D%B4%EB%9E%80-%EB%AC%B4%EC%97%87%EC%9D%B8%EA%B0%80%EC%9A%94-
* Slack - Microsoft Teams? ?? ?? ? ?????? ?
* GitHub? Jenkins?? ??? ???? ??? ?? ??
* ???, ??, ??? ? ?? ??
* ? ???? ? ? ??
? 2020 NetApp, Inc. All rights reserved.
28
Slack ?? ¨C GitHub #1
Slack ??
1. Slack ??
- ?? ? ?????? ??
- ? ???? ?? ???? ??? ?? ??
https://slack.com/intl/ko-kr/
https://slack.com/intl/ko-kr/
? 2020 NetApp, Inc. All rights reserved.
29
Slack ?? ¨C GitHub #2
Slack ??
2. GitHub ? ?? ? ??
- ? ?? ? ???? ?? ?? ??
? 2020 NetApp, Inc. All rights reserved.
30
Slack ?? ¨C GitHub #3
Slack ??
2. GitHub ? ?? ? ??
- ? ?? ? ???? ?? ?? ??
? 2020 NetApp, Inc. All rights reserved.
31
Slack ?? ¨C Jenkins #1
Slack ??
1. Jenkins ? ?? ? ??
- ? ?? ? ?? ??
? 2020 NetApp, Inc. All rights reserved.
32
Slack ?? ¨C Jenkins #2
Slack ??
1. Jenkins ? ?? ? ??
- ¡°Jenkins CI ?? ? ??¡± ? ???, Jenkins ???? ?? ??? ??
- ¡°? ?? ???¡± ??? ¡°?? ??¡± ??
? 2020 NetApp, Inc. All rights reserved.
33
Slack ?? ¨C Jenkins #3
Slack ??
2. Jenkins?? Slack ?? ??
- Slack Notification ???? ?? ? ??
- Jenkins ?? ¡ú System Configuration ¡ú Slack
- Slack ?? ???? Jenkins Credential ?? ??
? 2020 NetApp, Inc. All rights reserved.
34
Slack ?? ¨C Jenkins #4
Slack ??
3. ???? ?? ??
- ?? ? ??? Slack Notifications ??
? 2020 NetApp, Inc. All rights reserved.
35
Notification ¨C GitHub
Slack ??
1. GitHub Notification ??
- ?? ?? ?? ? GitHub? push
- Slack? ??? commit ??? ??
? 2020 NetApp, Inc. All rights reserved.
36
Notification ¨C Jenkins
Slack ??
1. Jenkins Notification ??
- GitHub? ?? ??? ???? ??? ??? ?? ??
- ?? ?? ??? ??? Slack? ??? ??
? 2020 NetApp, Inc. All rights reserved.
37
Notification ¨C Mobile
Slack ??
1. ??? ? ???
? 2020 NetApp, Inc. All rights reserved.
38
Pipeline, Multi-configuration project, Folder ???
Jenkins ?? ???
? 2020 NetApp, Inc. All rights reserved.
39
Jenkin Pipeline ?? #1
Jenkins /CD ??
** Jenkins Pipeline ¨C Build, Test, Deploy ???? ?? CD ??
1. Docker ??
$ sudo apt install docker.io
$ sudo usermod -aG docker seungyong
$ docker version
2. ???? ??
- Docker pipeline ???? ?? ? ??
- Jenkins ?? ¡ú System Configuration ¡ú Declarative Pipeline(Docker)
- Docker registry URL: ?? ?? DockerHub ?? registry ??
- Jenkins Credential? DockerHub ??? ID/PW ??
? 2020 NetApp, Inc. All rights reserved.
40
Jenkin Pipeline ?? #2
Jenkins /CD ??
3. GitHub? Jenkinsfile ??
4. Pipeline ??
- Freestyle project? ??? ??
https://www.jenkins.io/doc/book/pipeline/
https://www.jenkins.io/doc/pipeline/tour/hello-world/
? 2020 NetApp, Inc. All rights reserved.
41
Jenkin Pipeline ?? #3
Jenkins /CD ??
4. Pipeline ??
- Pipeline ?? script ?? ?? ????? ??? ??
- ? ??? SCM?? ???? ??? ????, ??? GitHub ??? ??
? 2020 NetApp, Inc. All rights reserved.
42
Jenkin Pipeline ?? #4
Jenkins /CD ??
5. Pipeline ?? ???
- ???? ?? ??
? 2020 NetApp, Inc. All rights reserved.
43
Jenkin Pipeline ?? #5
Jenkins /CD ??
6. Pipeline ?? ?? ??
- ?? ?? ? ??? ?? ??
? 2020 NetApp, Inc. All rights reserved.
44
Containers Orchestration, Configuration Management, Hybrid Cloud Data Services
NetApp with DevOps
Containers Orchestration
Public Cloud
Configuration Management
Private Cloud
? 2020 NetApp, Inc. All rights reserved.
45
NetApp Astra Trident for Container
NetApp with DevOps
Google GKE
MSFT AKS
Docker EE
swam
C O N T A I N E R O R C H E S T R A T O R S S T O R A G E P L A T F O R M S
NetApp HCI
SANtricity
AFF / EF-Serie
Element
Azure NetApp File
Cloud Volume Services
Clone
Snapshot
Volume Import
NFS / iSCSI
CSI
? 2020 NetApp, Inc. All rights reserved.
46
NetApp Astra for Container Data Management
NetApp with DevOps
Astra Control Center and Service
Stateful
Applications
Bring your own
Kubernetes
Public Cloud
Enterprise IT
Private/
Hybrid Cloud
by
On-premises and
Cloud Storage
Self managed Software
Full managed Software
Cloud Volumes ONTAP
Cloud Volumes Service
NetApp unlocks
the best of cloud
? 2020 NetApp, Inc. All rights reserved.
Ad

Recommended

PPTX
CI/CD on AWS
Bhargav Amin
?
ODP
Openshift Container Platform
DLT Solutions
?
PDF
???? ????? ????? ?? ???? ??
rockplace
?
PDF
Freezer - Vietnam OpenStack Technical Meetup #12
Vietnam Open Infrastructure User Group
?
PDF
Kubeflow Pipelines (with Tekton)
Animesh Singh
?
PPTX
Azure App Service
BizTalk360
?
PDF
Kubernetes 101
Winton Winton
?
PDF
? ??????? - OpenShift ?? ??? ????? ?? ?? ? ????
rockplace
?
PPTX
K8s in 3h - Kubernetes Fundamentals Training
Piotr Perzyna
?
PPTX
Introduction to Kubernetes
Paris Apostolopoulos
?
PDF
AWS Black Belt Online Seminar 2016 AWS CloudFormation
Amazon Web Services Japan
?
PPTX
Ceph Tech Talk -- Ceph Benchmarking Tool
Ceph Community
?
PDF
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
Troublemaker Khunpech
?
PPTX
Jenkins
MohanRaviRohitth
?
PPTX
Basic Jenkins Guide.pptx
Jayanga V. Liyanage
?
PDF
Ironic
Haomeng Wang
?
PDF
Fluentd v1.0 in a nutshell
N Masahiro
?
PPTX
DevOps with Kubernetes
EastBanc Tachnologies
?
PPTX
Kubernetes PPT.pptx
ssuser0cc9131
?
PPTX
DevOps introduction
Christian F. Nissen
?
PPTX
01. Kubernetes-PPT.pptx
TamalBanerjee16
?
PDF
AWS Serverless Introduction (Lambda)
Ashish Kushwaha
?
PPTX
Red Hat Openshift Fundamentals.pptx
ssuser18b1c6
?
PPTX
Jenkins tutorial
Mamun Rashid, CCDH
?
PDF
??? ??? ?? Scalable ? ??? ??? ?? ?? - ???, ??? ??? ??, ?????? ::: Games on AW...
Amazon Web Services Korea
?
PDF
GitOps with Amazon EKS Anywhere by Dan Budris
Weaveworks
?
PDF
¡¾³õÐÄÕßÏò¤±¡¿API ¤òʹ¤Ã¤Æ¥¯¥é¥¦¥É¤Î¹ÜÀí¤ò×Ô„Ó»¯¤·¤è¤¦
¸»Ê¿Í¨¥¯¥é¥¦¥É¥Æ¥¯¥Î¥í¥¸©`¥ºÖêʽ»áÉç
?
PDF
NDC13: DVCS? ???? ??? ???? ?? ?? ??
Jinuk Kim
?
PPTX
GitLab? Kubernetes? ?? CI/CD ??
?? ?
?

More Related Content

What's hot (20)

PPTX
K8s in 3h - Kubernetes Fundamentals Training
Piotr Perzyna
?
PPTX
Introduction to Kubernetes
Paris Apostolopoulos
?
PDF
AWS Black Belt Online Seminar 2016 AWS CloudFormation
Amazon Web Services Japan
?
PPTX
Ceph Tech Talk -- Ceph Benchmarking Tool
Ceph Community
?
PDF
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
Troublemaker Khunpech
?
PPTX
Jenkins
MohanRaviRohitth
?
PPTX
Basic Jenkins Guide.pptx
Jayanga V. Liyanage
?
PDF
Ironic
Haomeng Wang
?
PDF
Fluentd v1.0 in a nutshell
N Masahiro
?
PPTX
DevOps with Kubernetes
EastBanc Tachnologies
?
PPTX
Kubernetes PPT.pptx
ssuser0cc9131
?
PPTX
DevOps introduction
Christian F. Nissen
?
PPTX
01. Kubernetes-PPT.pptx
TamalBanerjee16
?
PDF
AWS Serverless Introduction (Lambda)
Ashish Kushwaha
?
PPTX
Red Hat Openshift Fundamentals.pptx
ssuser18b1c6
?
PPTX
Jenkins tutorial
Mamun Rashid, CCDH
?
PDF
??? ??? ?? Scalable ? ??? ??? ?? ?? - ???, ??? ??? ??, ?????? ::: Games on AW...
Amazon Web Services Korea
?
PDF
GitOps with Amazon EKS Anywhere by Dan Budris
Weaveworks
?
PDF
¡¾³õÐÄÕßÏò¤±¡¿API ¤òʹ¤Ã¤Æ¥¯¥é¥¦¥É¤Î¹ÜÀí¤ò×Ô„Ó»¯¤·¤è¤¦
¸»Ê¿Í¨¥¯¥é¥¦¥É¥Æ¥¯¥Î¥í¥¸©`¥ºÖêʽ»áÉç
?
K8s in 3h - Kubernetes Fundamentals Training
Piotr Perzyna
?
Introduction to Kubernetes
Paris Apostolopoulos
?
AWS Black Belt Online Seminar 2016 AWS CloudFormation
Amazon Web Services Japan
?
Ceph Tech Talk -- Ceph Benchmarking Tool
Ceph Community
?
CI/CD with Jenkins and Docker - DevOps Meetup Day Thailand
Troublemaker Khunpech
?
Basic Jenkins Guide.pptx
Jayanga V. Liyanage
?
Fluentd v1.0 in a nutshell
N Masahiro
?
DevOps with Kubernetes
EastBanc Tachnologies
?
Kubernetes PPT.pptx
ssuser0cc9131
?
DevOps introduction
Christian F. Nissen
?
01. Kubernetes-PPT.pptx
TamalBanerjee16
?
AWS Serverless Introduction (Lambda)
Ashish Kushwaha
?
Red Hat Openshift Fundamentals.pptx
ssuser18b1c6
?
Jenkins tutorial
Mamun Rashid, CCDH
?
??? ??? ?? Scalable ? ??? ??? ?? ?? - ???, ??? ??? ??, ?????? ::: Games on AW...
Amazon Web Services Korea
?
GitOps with Amazon EKS Anywhere by Dan Budris
Weaveworks
?
¡¾³õÐÄÕßÏò¤±¡¿API ¤òʹ¤Ã¤Æ¥¯¥é¥¦¥É¤Î¹ÜÀí¤ò×Ô„Ó»¯¤·¤è¤¦
¸»Ê¿Í¨¥¯¥é¥¦¥É¥Æ¥¯¥Î¥í¥¸©`¥ºÖêʽ»áÉç
?

Similar to DevOps - CI/CD ???? (20)

PDF
NDC13: DVCS? ???? ??? ???? ?? ?? ??
Jinuk Kim
?
PPTX
GitLab? Kubernetes? ?? CI/CD ??
?? ?
?
PDF
DevOps? ?? AWS ??? ? ???? -??? ??????? :: AWS ??? ????? ???
Amazon Web Services Korea
?
PPTX
Continuous Integration
Donghyun Seo
?
PPTX
??? ??? ???? - ??? ? ??
?? ?
?
PDF
Atlassian cloud ??? ??? DevOps ???? ??: Jira Cloud, Bitbucket Cloud
Open Source Consulting
?
PDF
Atlassian cloud ??? ??? DevOps ???? ??
SooHyunsuPark
?
PDF
Atlassian ? ????? ??? DevOps ?? - ???????
Atlassian ????
?
PDF
???? ??
?? ?
?
PDF
[NDC17] ? ???? ?????
Chanwoong Kim
?
PPTX
Travis-ci? ??? CI/CD? ??? ??? Jenkins for Android ????
?? ?
?
PDF
DevOps? ?? ???? (???? ??? ????) ??/?? ?
Ian Choi
?
PDF
???? ????? ?? AWS ?? ?? ???? - AWS Summit Seoul 2017
Amazon Web Services Korea
?
PDF
[AIS 2018][Team Tools_Basic] Atlassian ?? ??? DevOps ?? - ???
Atlassian ????
?
PDF
[???????]?????? ?? ?_?????_v1.0_20140211
Ji-Woong Choi
?
PPTX
Git? ?? ? Bitbucket? ??? Git ?? ?? - Twoseed
Atlassian ????
?
PDF
MSBuild + Git + Jenkins
?? ?
?
PDF
[NHN_NEXT] ?? ?? ???? CI + GitHub ?? ??
MinGeun Park
?
PDF
AWS Summit Seoul 2015 - AWS? ?? ?? ??? ??
Amazon Web Services Korea
?
PDF
AWS? ???? DevOps??? :: ??? :: AWS Summit Seoul 2016
Amazon Web Services Korea
?
NDC13: DVCS? ???? ??? ???? ?? ?? ??
Jinuk Kim
?
GitLab? Kubernetes? ?? CI/CD ??
?? ?
?
DevOps? ?? AWS ??? ? ???? -??? ??????? :: AWS ??? ????? ???
Amazon Web Services Korea
?
Continuous Integration
Donghyun Seo
?
??? ??? ???? - ??? ? ??
?? ?
?
Atlassian cloud ??? ??? DevOps ???? ??: Jira Cloud, Bitbucket Cloud
Open Source Consulting
?
Atlassian cloud ??? ??? DevOps ???? ??
SooHyunsuPark
?
Atlassian ? ????? ??? DevOps ?? - ???????
Atlassian ????
?
???? ??
?? ?
?
[NDC17] ? ???? ?????
Chanwoong Kim
?
Travis-ci? ??? CI/CD? ??? ??? Jenkins for Android ????
?? ?
?
DevOps? ?? ???? (???? ??? ????) ??/?? ?
Ian Choi
?
???? ????? ?? AWS ?? ?? ???? - AWS Summit Seoul 2017
Amazon Web Services Korea
?
[AIS 2018][Team Tools_Basic] Atlassian ?? ??? DevOps ?? - ???
Atlassian ????
?
[???????]?????? ?? ?_?????_v1.0_20140211
Ji-Woong Choi
?
Git? ?? ? Bitbucket? ??? Git ?? ?? - Twoseed
Atlassian ????
?
MSBuild + Git + Jenkins
?? ?
?
[NHN_NEXT] ?? ?? ???? CI + GitHub ?? ??
MinGeun Park
?
AWS Summit Seoul 2015 - AWS? ?? ?? ??? ??
Amazon Web Services Korea
?
AWS? ???? DevOps??? :: ??? :: AWS Summit Seoul 2016
Amazon Web Services Korea
?
Ad

More from SeungYong Baek (7)

PDF
??? ??? ????(Learn about Data Lake)
SeungYong Baek
?
PDF
NetApp AI Control Plane
SeungYong Baek
?
PDF
???? ???? ????(Learn about opensource monitoring)
SeungYong Baek
?
PDF
?? ?? #2(Simple Web Scraping with Python #2)
SeungYong Baek
?
PDF
?? ?? #1(Simple Web Scraping with Python #1)
SeungYong Baek
?
PDF
????? ????(Learn about basic data analysis)
SeungYong Baek
?
PDF
?? ????(Learn about Hadoop basic), NetApp FAS NFS Connector for Hadoop
SeungYong Baek
?
??? ??? ????(Learn about Data Lake)
SeungYong Baek
?
NetApp AI Control Plane
SeungYong Baek
?
???? ???? ????(Learn about opensource monitoring)
SeungYong Baek
?
?? ?? #2(Simple Web Scraping with Python #2)
SeungYong Baek
?
?? ?? #1(Simple Web Scraping with Python #1)
SeungYong Baek
?
????? ????(Learn about basic data analysis)
SeungYong Baek
?
?? ????(Learn about Hadoop basic), NetApp FAS NFS Connector for Hadoop
SeungYong Baek
?
Ad

DevOps - CI/CD ????

  • 1. DevOps ¨C CI/CD ???? Jenkins, git, GitHub, and Slack ? 2020 NetApp, Inc. All rights reserved. SeungYong Baek Senior Solutions Engineer / NetApp Korea August 2021
  • 2. ??? ?? ?¡­ ? DevOps? ? Source Code Management ? git, GitHub ? Continuous Integration(CI) / Continuous Delivery(CD) ? Jenkins ? Collaboration and Communication ? Slack ? Demo ¨C git, GitHub, Jenkins, Slack ? NetApp with DevOps ? 2020 NetApp, Inc. All rights reserved. 2
  • 3. ? 2020 NetApp, Inc. All rights reserved. 3 ??? ????? ??, ??, ? ????? ?? ??? ??? ??? ??? DevOps? DevOps?? DevOps? ?????? ??? ??? ??? ???? ?? ?? ??? ????? ???? ??? ??? ?? ??? ???? ??? ???? ????????. DevOps ??? ?????? ?? ?(Dev)? ?? IT ?? ?(Ops) ? ?? ???? ???? ??????, ??, ??, ??? ? ???? ?????. "Dev"? "Ops" ?? ??? ??? ??? ?? ????? ???? ??, ??, ??? ? ??? ??? ??, ?? ? ???? ????? ??? DevOps ??????? ?? ??? ?? ?????. ??? ??? ?? ??, ??, ??? ? ??? ?? ???? ?? ??? ??? ???? ???? ???. ??? ??? ???? ?? ? ??? ??? ?? ?? ?? ?? ??? ? ??? ????? ???? ? ??? ????. ¨C NetApp ¨C DevOps ?? ??(Dev)? ??(Ops)? ???? DevOps? ???? ????? ??? ????? ???? ??, ???? ? ??? ??????. ??? DevOps? ?? ?????? DevOps? ??, IT ??, ?? ?????, ?? ? ??? ?? ????? ???? ?? ???? ???? ?? ????? ??? ??? ??? ? ??? ?????. DevOps ??? ??? ??? DevOps ??? ???? ?? ?? ?? ??? ?? ????? ????, ?? ???? ??????? ????, ???? ??? ? ?? ??? ? ????. ¨C Microsoft ¨C DevOps ?? DevOps? ??? ??? ??? ??? ?? ???? ??? ???? ????? ?? ?? ??, ???, ??? ??? ?? ?? ?????. ??? ?? ??? ??? ????? IT ???? ???? ??? ??? ?????. DevOps? ??? ??????? ?? ???? ???? ?????? ? ???? ???? ?? ?????. ¨C Redhat ¨C https://www.netapp.com/ko/devops-solutions/what-is-devops/ https://azure.microsoft.com/ko-kr/overview/what-is-devops/ https://www.redhat.com/ko/topics/devops
  • 4. ? 2020 NetApp, Inc. All rights reserved. 4 DevOps? ?? ??, ??, ??? ??? ?? ??? ??? ???. DevOps ?? https://www.netapp.com/ko/devops-solutions/what-is-devops/ https://aws.amazon.com/ko/devops/what-is-devops/
  • 5. ? 2020 NetApp, Inc. All rights reserved. 5 ?? ??? ? ?? ? ?? ?? DevOps ????? ? https://devops.com/the-promise-of-ai-for-devops-in-2021/ https://www.opsera.io/blog/top-25-devops-tools-that-you-need-to-know AWS CodeBuild AWS CodeCommit AWS CodeDeploy AWS Cloud Development Kit (AWS CDK)
  • 6. ? 2020 NetApp, Inc. All rights reserved. 6 CI / CD? DevOps? ?? ?? ? ? ?? Continuous Integration(CI) / Continuous Delivery(CD)? ??? ?? (Continuous Integration) CI/CD? "CI"? ???? ?? ??? ????? ???? ??(Continuous Integration)? ?????. CI? ????? ??? ?? ??????? ?? ??? ?? ?? ??? ????? ?? ? ????? ?? ?????? ????? ?? ?? ???? ??? ?????? ??? ??? ?? ??? ? ?? ?? ??? ? ?? ??? ??? ? ????. ??? ?? (Continuous Delivery) CI/CD? "CD"? ???? ??? ??(Continuous Delivery) ?/?? ???? ??(Continuous Deployment)? ???? ? ? ??? ?? ????? ?????. ? ?? ?? ?? ?????? ?? ??? ?? ???? ???? ??? ??? ?? ???? ????? ???? ???? ?? ??? ????? ???. ?? vs ?? ??? ??(Continuous Delivery) ? ??? ??? ?????? ???? ??? ? ??????? ??? ??? ?? ??? ?? ??? ??(Continuous Deployment) ? ??????? ?????? ????? ??? ??? https://www.redhat.com/ko/topics/devops/what-is-ci-cd
  • 7. ? 2020 NetApp, Inc. All rights reserved. 7 git, GitHub, Jenkins, Slack, AWS EC2, Docker CI/CD ?? ?? Jenkins ?? AWS EC2 1. git push 2. git commit / push ?? 2. git fetch 3. ??? ??? ?? 4. EC2 ???(SSH) 5. ?? ?? Jenkins Pipeline demo?? ??
  • 8. ? 2020 NetApp, Inc. All rights reserved. 8 git ? GitHub ?? Source Code Management git? ??? ??? ????? ???? ?? ?? ???? ?? ?? ???? ??? ???? ?? ?? ?? ?? ?????. GitHub? ?? ?? ?? ?? git ??? ???? ???? ? ?????. Working Directory Staging Area Local Repository Remote Repository (Public or Private) Working Directory Staging Area Local Repository Working Directory Staging Area Local Repository git add git commit git push/pull git clone https://ko.wikipedia.org/wiki/%EA%B9%83_(%EC%86%8C%ED%94%84%ED%8A%B8%EC%9B%A8%EC%96%B4) https://ko.wikipedia.org/wiki/%EA%B9%83%ED%97%88%EB%B8%8C
  • 9. ? 2020 NetApp, Inc. All rights reserved. 9 git ? GitHub ?? #1 Source Code Management ?? 1. git, gcc ?? $ sudo apt install git gcc 2. GitHub ?? - https://github.com/ 3. GitHub remote repository ?? - repository ?? ?? Quick setup ??
  • 10. ? 2020 NetApp, Inc. All rights reserved. 10 git ? GitHub ?? #2 Source Code Management ?? 4. Personal Access Token ?? - Settings ¡ú Developer settings ¡ú Personal access token - API? CLI ??? ???? ?? - ??? ? ?? ????? ??? ?? - ?? ???? ??? ? ?? ?? ?? https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token
  • 11. ? 2020 NetApp, Inc. All rights reserved. 11 git ? GitHub ?? #3 Source Code Management ?? 5. git ??? ? GitHub remote repository ?? $ mkdir cicd-demo ; cd cicd-demo $ echo "# CICD-demo - Jenkins with GitHub." > README.md $ vi hello.c ##### hello.c ##### #include <stdio.h> #include <stdlib.h> int main(void) { printf("Hello!n"); printf("CICD-demo - Jenkins with GitHub #1n"); exit(0); }
  • 12. ? 2020 NetApp, Inc. All rights reserved. 12 git ? GitHub ?? #4 Source Code Management ?? 5. git ??? ? GitHub remote repository ?? $ git init $ git add README.md hello.c $ git config --global user.name "SeungYong-Baek" $ git config --global user.email "seungyong.baek@gmail.com" $ git config --list $ git commit -m "First Commit" $ git status $ git log $ git branch -M main $ git remote add origin https://github.com/SeungYong-Baek/cicd-demo.git ** ????? ??? PAT ?? $ git push -u origin main $ git status $ git log 6. GitHub remote repository ??
  • 13. ? 2020 NetApp, Inc. All rights reserved. 13 Jenkins ?? Continuous Integration / Continuous Delivery https://www.jenkins.io/doc/ https://docs.microsoft.com/ko-kr/azure/developer/jenkins/overview Jenkins? ????? ????? ?? CI/CD(???? ?? ? ??)? ???? ? ???? ?? ?? ?? ?? ??? ?????. Azure?? Jenkins ??? ?????? Azure ???? ???? ?? Jenkins ??? ??? ? ????. ??????? CI/CD? Azure? ????? ?? Jenkins ??? ?? ??? ? ????.
  • 14. ? 2020 NetApp, Inc. All rights reserved. 14 Jenkins ¨C ?? ?? ??? #1 Jenkins CI/CD ?? 1. JDK ?? $ sudo apt install openjdk-11-jdk 2. Jenkins ???? - WAR ?? ? OS? ??? ?? ?? - WAR(Web application ARchive, ? ?????? ????) - JAR(Java Archive, ?? ????) - ? ??? ?? ??? WAR ?? ?? ** WAR ??? ?? ?? $ jar tvf jenkins.war https://www.jenkins.io/download/ https://www.jenkins.io/doc/book/installing/
  • 15. ? 2020 NetApp, Inc. All rights reserved. 15 Jenkins ¨C ?? ?? ??? #2 Jenkins CI/CD ?? 3. Jenkins ?? - Jenkins ?? ? ?? ?? ? ?? ?? ?? $ java -jar jenkins.war ** Setup Wizard? ???? ?? Admin ????? ??
  • 16. ? 2020 NetApp, Inc. All rights reserved. 16 Jenkins ¨C ?? ?? ??? #3 Jenkins CI/CD ?? 3. Jenkins ?? - Jenkins ?? ? ?? ?? ? ?? ?? ?? $ java -jar jenkins.war ** Setup Wizard? ???? ?? Admin ????? ??
  • 17. ? 2020 NetApp, Inc. All rights reserved. 17 Jenkins ¨C ?? ?? ??? #4 Jenkins CI/CD ?? 4. Jenkins Global Tool ?? - Jenkins ?? ¡ú Global Tool Configuration ¡ú JDK, Git
  • 18. ? 2020 NetApp, Inc. All rights reserved. 18 Jenkins ¨C ?? ?? ??? #5 Jenkins CI/CD ?? 5. ???? ?? ? ?? ?? ?? - ??? Item ¡ú Freestyle Project
  • 19. ? 2020 NetApp, Inc. All rights reserved. 19 Jenkins ¨C ?? ?? ??? #6 Jenkins CI/CD ?? 5. ???? ?? ? ?? ?? ?? - ??: ??? + Unit ??? + ??? - GitHub ??? ?? Credential ?? ?? - SCM ???? ??? GitHub PAT ?? - ?? ??: 10? ?? SCM? Polling - ?? ??: GitHub hook? ?? - ??: Shell ?? gcc ?? - ???? Make, Gradle ?? ??? ?? ? ?? $ make all # Makefile .SUFFIXES : .c .o OBJECTS = main.o print.o input.o SRCS = $(OBJECTS:.o=.c) CC = gcc CFLAGS = -g TARGET = test helloworld all : $(TARGET) helloworld : helloworld.c $(CC) -o $@ $< test : $(OBJECTS) $(CC) -o $@ $(OBJECTS) clean : $(RM) $(OBJECTS) $(TARGET) helloworld.o core main.o : main.c common.h print.o : print.c common.h input.o : input.c common.h
  • 20. ? 2020 NetApp, Inc. All rights reserved. 20 Jenkins ¨C ?? ?? ??? #7 Jenkins CI/CD ?? 5. ???? ?? ? ?? ?? ?? - ?? ?? ??, ??? ??? ?? - ?? ?? ? ?????? ??
  • 21. ? 2020 NetApp, Inc. All rights reserved. 21 Jenkins ¨C ?? ?? ??? #8 Jenkins CI/CD ?? 6. ?? ?? ?? ?? ?? ?? ?? - ?? ?? ?? ? GitHub? push - Jenkins? repository? ?? ??? Polling?? ?? ??
  • 22. ? 2020 NetApp, Inc. All rights reserved. 22 Jenkins ¨C ?? ?? ??? #9 Jenkins CI/CD ?? 6. ?? ?? ?? ?? ?? ?? ?? - ?? ?? ? ?????? ??
  • 23. ? 2020 NetApp, Inc. All rights reserved. 23 Jenkins ¨C SSH ?? ??? #1 Jenkins CI/CD ?? ** AWS EC2 ????? ??? ???? ??(Artifact?? ??) ** EC2 ????? SSH ? ?? 1. ???? ?? - Publish Over SSH ???? ?? ? ?? - ??? ?? ?? ????? ???? ?? ???? ??
  • 24. ? 2020 NetApp, Inc. All rights reserved. 24 Jenkins ¨C SSH ?? ??? #2 Jenkins CI/CD ?? 2. ???? ?? - Jenkins ?? ¡ú System Configuration ¡ú Publish over SSH - SSH ? ? ?? ?? ??
  • 25. ? 2020 NetApp, Inc. All rights reserved. 25 Jenkins ¨C SSH ?? ??? #3 Jenkins CI/CD ?? 3. ???? ?? ?? - ?? ? ?? ?? - ??? ??? ?? ? ?? ?? ??
  • 26. ? 2020 NetApp, Inc. All rights reserved. 26 Jenkins ¨C SSH ?? ??? #4 Jenkins CI/CD ?? 4. ?? ?? ? ?? ?? - ¡°?? ?? ??? / 6. ?? ?? ?? ?? ?? ?? ??¡± - ?? ?? ? ?????? ??
  • 27. ? 2020 NetApp, Inc. All rights reserved. 27 Slack ?? Collaboration and Communication Slack?? ?????? Slack? ???? ??? ????? ??? ??? ????. Slack? ???? ?? ?? ??? ??? ?? ???? ??? ???????? ??? ??? ? ????. https://slack.com/intl/ko-kr/ https://slack.com/intl/ko-kr/help/articles/115004071768-Slack%EC%9D%B4%EB%9E%80-%EB%AC%B4%EC%97%87%EC%9D%B8%EA%B0%80%EC%9A%94- * Slack - Microsoft Teams? ?? ?? ? ?????? ? * GitHub? Jenkins?? ??? ???? ??? ?? ?? * ???, ??, ??? ? ?? ?? * ? ???? ? ? ??
  • 28. ? 2020 NetApp, Inc. All rights reserved. 28 Slack ?? ¨C GitHub #1 Slack ?? 1. Slack ?? - ?? ? ?????? ?? - ? ???? ?? ???? ??? ?? ?? https://slack.com/intl/ko-kr/ https://slack.com/intl/ko-kr/
  • 29. ? 2020 NetApp, Inc. All rights reserved. 29 Slack ?? ¨C GitHub #2 Slack ?? 2. GitHub ? ?? ? ?? - ? ?? ? ???? ?? ?? ??
  • 30. ? 2020 NetApp, Inc. All rights reserved. 30 Slack ?? ¨C GitHub #3 Slack ?? 2. GitHub ? ?? ? ?? - ? ?? ? ???? ?? ?? ??
  • 31. ? 2020 NetApp, Inc. All rights reserved. 31 Slack ?? ¨C Jenkins #1 Slack ?? 1. Jenkins ? ?? ? ?? - ? ?? ? ?? ??
  • 32. ? 2020 NetApp, Inc. All rights reserved. 32 Slack ?? ¨C Jenkins #2 Slack ?? 1. Jenkins ? ?? ? ?? - ¡°Jenkins CI ?? ? ??¡± ? ???, Jenkins ???? ?? ??? ?? - ¡°? ?? ???¡± ??? ¡°?? ??¡± ??
  • 33. ? 2020 NetApp, Inc. All rights reserved. 33 Slack ?? ¨C Jenkins #3 Slack ?? 2. Jenkins?? Slack ?? ?? - Slack Notification ???? ?? ? ?? - Jenkins ?? ¡ú System Configuration ¡ú Slack - Slack ?? ???? Jenkins Credential ?? ??
  • 34. ? 2020 NetApp, Inc. All rights reserved. 34 Slack ?? ¨C Jenkins #4 Slack ?? 3. ???? ?? ?? - ?? ? ??? Slack Notifications ??
  • 35. ? 2020 NetApp, Inc. All rights reserved. 35 Notification ¨C GitHub Slack ?? 1. GitHub Notification ?? - ?? ?? ?? ? GitHub? push - Slack? ??? commit ??? ??
  • 36. ? 2020 NetApp, Inc. All rights reserved. 36 Notification ¨C Jenkins Slack ?? 1. Jenkins Notification ?? - GitHub? ?? ??? ???? ??? ??? ?? ?? - ?? ?? ??? ??? Slack? ??? ??
  • 37. ? 2020 NetApp, Inc. All rights reserved. 37 Notification ¨C Mobile Slack ?? 1. ??? ? ???
  • 38. ? 2020 NetApp, Inc. All rights reserved. 38 Pipeline, Multi-configuration project, Folder ??? Jenkins ?? ???
  • 39. ? 2020 NetApp, Inc. All rights reserved. 39 Jenkin Pipeline ?? #1 Jenkins /CD ?? ** Jenkins Pipeline ¨C Build, Test, Deploy ???? ?? CD ?? 1. Docker ?? $ sudo apt install docker.io $ sudo usermod -aG docker seungyong $ docker version 2. ???? ?? - Docker pipeline ???? ?? ? ?? - Jenkins ?? ¡ú System Configuration ¡ú Declarative Pipeline(Docker) - Docker registry URL: ?? ?? DockerHub ?? registry ?? - Jenkins Credential? DockerHub ??? ID/PW ??
  • 40. ? 2020 NetApp, Inc. All rights reserved. 40 Jenkin Pipeline ?? #2 Jenkins /CD ?? 3. GitHub? Jenkinsfile ?? 4. Pipeline ?? - Freestyle project? ??? ?? https://www.jenkins.io/doc/book/pipeline/ https://www.jenkins.io/doc/pipeline/tour/hello-world/
  • 41. ? 2020 NetApp, Inc. All rights reserved. 41 Jenkin Pipeline ?? #3 Jenkins /CD ?? 4. Pipeline ?? - Pipeline ?? script ?? ?? ????? ??? ?? - ? ??? SCM?? ???? ??? ????, ??? GitHub ??? ??
  • 42. ? 2020 NetApp, Inc. All rights reserved. 42 Jenkin Pipeline ?? #4 Jenkins /CD ?? 5. Pipeline ?? ??? - ???? ?? ??
  • 43. ? 2020 NetApp, Inc. All rights reserved. 43 Jenkin Pipeline ?? #5 Jenkins /CD ?? 6. Pipeline ?? ?? ?? - ?? ?? ? ??? ?? ??
  • 44. ? 2020 NetApp, Inc. All rights reserved. 44 Containers Orchestration, Configuration Management, Hybrid Cloud Data Services NetApp with DevOps Containers Orchestration Public Cloud Configuration Management Private Cloud
  • 45. ? 2020 NetApp, Inc. All rights reserved. 45 NetApp Astra Trident for Container NetApp with DevOps Google GKE MSFT AKS Docker EE swam C O N T A I N E R O R C H E S T R A T O R S S T O R A G E P L A T F O R M S NetApp HCI SANtricity AFF / EF-Serie Element Azure NetApp File Cloud Volume Services Clone Snapshot Volume Import NFS / iSCSI CSI
  • 46. ? 2020 NetApp, Inc. All rights reserved. 46 NetApp Astra for Container Data Management NetApp with DevOps Astra Control Center and Service Stateful Applications Bring your own Kubernetes Public Cloud Enterprise IT Private/ Hybrid Cloud by On-premises and Cloud Storage Self managed Software Full managed Software Cloud Volumes ONTAP Cloud Volumes Service
  • 47. NetApp unlocks the best of cloud ? 2020 NetApp, Inc. All rights reserved.