搭建chart仓库chartmuseum

Install

  • 下载安装包chartmuseum
    curl -LO https://s3.amazonaws.com/chartmuseum/release/latest/bin/linux/amd64/chartmuseum
    将chartmuseum binary放到$PATH路径下即可
chmod +x ./chartmuseum
mv ./chartmuseum /usr/local/bin
  • 使用本地存储,以systemd方式启动chartmuseum

chartmuseum.service文件

[root@tcz-dev-adam chartmuseum]# cat /etc/systemd/system/chartmuseum.service 
[Unit]
Description=chartmuseum
Requires=network-online.target
After=network-online.target

[Service]
EnvironmentFile=/etc/chartmuseum/chartmuseum.config
User=root
Restart=allways
ExecStart=/usr/local/bin/chartmuseum $ARGS
ExecStop=/usr/local/bin/chartmuseum step-down

[Install]
WantedBy=multi-user.target

chartmuseum.config配置文件

[root@tcz-dev-adam chartmuseum]# cat /etc/chartmuseum/chartmuseum.config 
ARGS=\
--port=8080 \
--storage="local" \
--storage-local-rootdir="/var/lib/chartmuseum/chartstorage" \
--log-json \
--basic-auth-user=admin \
--basic-auth-pass="xxxxxx"

--port: chartmuseum服务监听端口
--storage: local表示使用本地存储,使用其他存储参照点我
--storage-local-rootdir: 本地存储点路径,helm push chart的存储路径
--log-json: 日志显示为json格式
--basic-auth-user: 用户名(使用基本的认证方式,用户名+密码,使用证书方式参照点我)
--asic-auth-pass: 密码 (chartmuseum服务起来后,后续给helm添加repo时需要加上--username xxx --password ***)

启动chartmuseum服务

[root@tcz-dev-adam chartmuseum]# systemctl start chartmuseum
[root@tcz-dev-adam chartmuseum]# systemctl status chartmuseum
● chartmuseum.service - chartmuseum
   Loaded: loaded (/etc/systemd/system/chartmuseum.service; disabled; vendor preset: disabled)
   Active: active (running) since 五 2019-05-17 18:20:45 CST; 19h ago
  Process: 16144 ExecStop=/usr/local/bin/chartmuseum step-down (code=exited, status=1/FAILURE)
 Main PID: 16156 (chartmuseum)
    Tasks: 8
   Memory: 9.2M
   CGroup: /system.slice/chartmuseum.service
           └─16156 /usr/local/bin/chartmuseum --port=8080 --storage=local --storage-local-rootdir=/var/lib/chartmuseum/chartstorage --log-json --basic-auth-user=admin --basic-a...

5月 17 18:20:45 tcz-dev-adam systemd[1]: Started chartmuseum.
5月 17 18:20:45 tcz-dev-adam systemd[1]: Starting chartmuseum...
5月 17 18:20:45 tcz-dev-adam chartmuseum[16156]: {"L":"INFO","T":"2019-05-17T18:20:45.568+0800","M":"Starting ChartMuseum","port":8080}
5月 17 18:25:19 tcz-dev-adam chartmuseum[16156]: {"L":"INFO","T":"2019-05-17T18:25:19.805+0800","M":"[1] Request served","path":"/index.yaml","comment":"","latency":"1.56...4daaad92a"}
5月 17 18:26:36 tcz-dev-adam chartmuseum[16156]: {"L":"ERROR","T":"2019-05-17T18:26:36.468+0800","M":"[2] Request served","path":"/api/charts","comment":"","latency":"3.7...42592f6f1"}
Hint: Some lines were ellipsized, use -l to show in full.

Apply

(1)安装helm push插件

  • 网络好的方式,简单方便
$ helm plugin install https://github.com/chartmuseum/helm-push
Downloading and installing helm-push v0.7.1 ...
https://github.com/chartmuseum/helm-push/releases/download/v0.7.1/helm-push_0.7.1_darwin_amd64.tar.gz
Installed plugin: push
  • 网内不好的方式
    a) 较慢的速度下载源码,git clonego get 均可
    git clone https://github.com/chartmuseum/helm-push.git
    或者,在$GOPATH路径下
    go get github.com/chartmuseum/helm-push
    b) 下载chartmuesum tar 包 点我
    wget https://github.com/chartmuseum/helm-push/releases/download/v0.7.1/helm-push_0.7.1_linux_amd64.tar.gz
    c) 解压tar包并放到指定目录下,./helm-push/download/
    tar zxvf helm-push_0.7.1_linux_amd64.tar.gz
    d) 修改helm-push/scripts/install_plugin.sh源码
#!/bin/sh -e

# Copied w/ love from the excellent hypnoglow/helm-s3

if [ -n "${HELM_PUSH_PLUGIN_NO_INSTALL_HOOK}" ]; then
    echo "Development mode: not downloading versioned release."
    exit 0
fi

version="$(cat plugin.yaml | grep "version" | cut -d '"' -f 2)"
#echo "Downloading and installing helm-push v${version} ..."

#url=""
#if [ "$(uname)" = "Darwin" ]; then
#    url="https://github.com/chartmuseum/helm-push/releases/download/v${version}/helm-push_${version}_darwin_amd64.tar.gz"
#elif [ "$(uname)" = "Linux" ] ; then
#    url="https://github.com/chartmuseum/helm-push/releases/download/v${version}/helm-push_${version}_linux_amd64.tar.gz"
#else
#    url="https://github.com/chartmuseum/helm-push/releases/download/v${version}/helm-push_${version}_windows_amd64.tar.gz"
#fi

echo "Local installing helm-push v${version} ..."
url=""
if [ "$(uname)" = "Darwin" ]; then
    url="https://github.com/chartmuseum/helm-push/releases/download/v${version}/helm-push_${version}_darwin_amd64.tar.gz"
elif [ "$(uname)" = "Linux" ] ; then
    url="./helm-push/dl/helm-push_${version}_linux_amd64.tar.gz"
else
    url="https://github.com/chartmuseum/helm-push/releases/download/v${version}/helm-push_${version}_windows_amd64.tar.gz"
fi

echo $url

mkdir -p "bin"
mkdir -p "releases/v${version}"

# Download with curl if possible.
#if [ -x "$(which curl 2>/dev/null)" ]; then
#    curl -sSL "${url}" -o "releases/v${version}.tar.gz"
#else
#    wget -q "${url}" -O "releases/v${version}.tar.gz"
#fi
cp download/helm-push_${version}_linux_amd64.tar.gz releases/v${version}.tar.gz
tar xzf "releases/v${version}.tar.gz" -C "releases/v${version}"
mv "releases/v${version}/bin/helmpush" "bin/helmpush" || \
    mv "releases/v${version}/bin/helmpush.exe" "bin/helmpush"

e) 安装helm-push插件,指定helm-push路径

$ helm plugin install https://github.com/chartmuseum/helm-push
Local installing helm-push v0.7.1 ...
./helm-push/dl/helm-push_v0.7.1_linux_amd64.tar.gz
Installed plugin: push

(2)添加chartmuseumhelm repo

[root@tcz-dev-adam scripts]# helm repo list
NAME        URL                                                    
local       http://127.0.0.1:8879/charts                           
telemetry   http://dl.xxx.xxx.com/devops/kubernetes/charts

[root@tcz-dev-adam scripts]# helm repo add chartmuseum http://dl.xxx.xxx.com:8080 --username admin --password ******
"chartmuseum" has been added to your repositories

[root@tcz-dev-adam scripts]# helm repo list
NAME        URL                                                    
local       http://127.0.0.1:8879/charts                           
telemetry   http://dl.xxx.xxx.com/devops/kubernetes/charts
chartmuseum http://dl.xxx.xxx.com:8080

(3) 使用 helm push将开发好的chart push 到远端的 chartmuseum

[root@tcz-dev-adam charts-packages]# helm push kube-state-metrics-0.2.0.tgz chartmuseum
Pushing kube-state-metrics-0.2.0.tgz to chartmuseum...
Done.

查看chartmuseum仓库中的chart

[root@tcz-dev-adam chartmuseum]# helm search chartmuseum/
NAME                            CHART VERSION   APP VERSION DESCRIPTION                           
chartmuseum/kube-state-metrics  0.2.0           1.0         A Helm chart for Kubernetes           
chartmuseum/metricbeat          1.0.1           1.0         A Helm Metricbeat chart for Kubernetes
chartmuseum/prometheus          0.2.0           1.0         A Helm Prometheus chart for Kubernetes
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,417评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,921评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,850评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,945评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,069评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,188评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,239评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,994评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,409评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,735评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,898评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,578评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,205评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,916评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,156评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,722评论 2 363
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,781评论 2 351

推荐阅读更多精彩内容