运行最简单的charts示例 helm的2个chart例子: https://github.com/kubernetes/helm/tree/master/docs/examples/nginx helm fetch xxx # 得到tgz helm install --dry-run --debug docs/examples/nginx ## 查看模板和value组合后生成的yaml. diy yaml后再运行 构建charts私有仓库: 参考: https://github.com/roo…
目标 npm.xxx.com 安装和推送nodejs包 npmui.xxx.com 管理已经推送的nodejs包   安装 couchdb   https://launchpad.net/~couchdb/+archive/ubuntu/stable   里面有 14.10  14.04 和 12.04的   PPA地址 安装不在这里讨论   安装 couchdb 1.6.1   1.初始化   访问“http://localhost:5984/_utils/” 新建名字为  registry…
一.在企业中基本上都会有自己的maven私有库,主要的目的就是方便依赖包的下载.如果采用远程的方式来实现的话,很多时候会考虑网速问题.如果自己活着公司搭建的私有库,这一样在使用上面会效率更高. 二.私有库的下载安装 1)下载地址:https://www.sonatype.com/download-oss-sonatype(根据自己的选择下载) 2)下载过后放在Linux上面,并解压,我这里使用的Linux部署. # tar -zxvf nexus---bundle.tar.gz 3)解压过后有2…
实验环境: CentOS7 1611 Docker 1.12.6 registry   2.0 1.安装并运行registry 安装: [root@docker01 ~]# docker pull registry Using default tag: latest Trying to pull repository docker.io/library/registry ... latest: Pulling from docker.io/library/registry 79650cf9cc0…
安装 satis 命令行下执行: php create-project composer/satis --stability=dev --keep-vcs . 配置 创建 satis.json 文件,如官方示例: {"name": "My Repository","homepage": "http://packages.example.org","repositories": [{ "type&q…
这篇文章介绍一下,如何使用VS2017给asp.net core添加容器支持,并发布镜像到私有docker hub,然后用chart管理容器镜像的操作流程. 话不多说,just do it. 新建项目 首先新建一个asp.net core项目,这里我新建一个WebApi默认项目. 这里我就不启动项目了,模板项目肯定是能跑起来的. 对项目添加docker容器支持 右键项目>>添加>>容器支持 选择Linux. 之后项目会添加一个DockerFile文件.这个dockerfile可以跟…
在我们的日常php开发中需要使用大量的第三方包和类库, 怎么管理是一个问题, 我们用的Yii2框架, 但是并没有把composer用起来, 由于最近更换为docker部署项目, 于是想起来用composer来管理包并降低部署代码的时间 安装composer(在你当做私有库的服务器上以及开发环境) 参考  https://www.phpcomposer.com/   (有国内镜像使用方法) 安装satis (在你当做私有库的服务器上) mkdir /data #我是在根目录下 cd data/ m…
环境准备系统: cat /etc/redhat-release CentOS Linux release (Core) 主机两台,分别是docker私有库服务器(IP 192.168.121.121)和用户开发机(IP 192.168.121.122),开发机从私有库服务器拉取镜像. 1.配置软件源并安装安装docker两台主机安装docker yum install docker-ce 2.搭建私有镜像仓库登陆私有库服务器 创建docker管理账户并设置密码 useradd dkuser pa…
在 Docker 搭建 Maven 私有库 小引 If you are developing software without a repository manager you are likely missing a number of opportunities to reduce some pretty obvious inefficiencies. If everyone on your team has to hit public repositories like the Centr…
1.创建自己的远程私有索引库,用来存放私有框架的.podspec文件,并将其添加到本地索引 我用的仓库是码云(https://gitee.com),用自己的账号新建一个私有仓库,我命名为PrivatePodRepo; 将PrivatePodRepo添加到本地索引. 执行命令查看本地索引库: pod repo list 然后执行将PrivatePodRepo添加到本地索引命令: pod repo add PrivatePodRepo https://gitee.com/alan12138/Priv…