On Mon, Jan 25, 2021 at 08:26:14PM +0800, Wu Zhende wrote:
Signed-off-by: Wu Zhende wuzhende666@163.com +RUN umask 002 && \
- echo ':sources: ["http://rubygems.org"]' >> ~/.gemrc && \
"https://gems.ruby-china.com/" this sources will better.
- gem install rest-client && \
- gem install activesupport && \
- gem install git && \
- gem install json && \
- gem install yaml
gem install rest-client activesupport git json yaml
Thanks, Yinsi
+ENV LIFECYCLE_RUNTIME_DIR /c/cci/lifecycle
+RUN mkdir -p $LIFECYCLE_RUNTIME_DIR && \
- chown -R 1090:1090 /c
+WORKDIR $LIFECYCLE_RUNTIME_DIR
+COPY --chown=1090:1090 lifecycle . diff --git a/container/lifecycle/build b/container/lifecycle/build new file mode 100755 index 0000000..8c4acca --- /dev/null +++ b/container/lifecycle/build @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved. +# frozen_string_literal: true
+require 'set' +require_relative '../defconfig.rb'
+names = Set.new ['LIFECYCLE_PORT'] +defaults = relevant_defaults(names)
+LIFECYCLE_PORT = (defaults['LIFECYCLE_PORT'] || '11311')
+CCI_SRC = ENV['CCI_SRC'] +system "bash #{CCI_SRC}/container/compile ." +system "docker build -t lifecycle-#{LIFECYCLE_PORT} ."
+system 'rm lifecycle' diff --git a/container/lifecycle/build-depends b/container/lifecycle/build-depends new file mode 100755 index 0000000..5dd403e --- /dev/null +++ b/container/lifecycle/build-depends @@ -0,0 +1 @@ +scheduler-dev diff --git a/container/lifecycle/start b/container/lifecycle/start new file mode 100755 index 0000000..7e67b3c --- /dev/null +++ b/container/lifecycle/start @@ -0,0 +1,33 @@ +#!/usr/bin/env ruby +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved. +# frozen_string_literal: true
+require 'set' +require_relative '../defconfig.rb'
+names = Set.new %w[
- LIFECYCLE_PORT
+]
+defaults = relevant_defaults(names) +env = docker_env(defaults)
+LIFECYCLE_PORT = defaults['LIFECYCLE_PORT'] || '11311' +docker_rm "lifecycle-#{LIFECYCLE_PORT}"
+cmd = %W[
- docker run
- --restart=always
- --name lifecycle-#{LIFECYCLE_PORT}
- -d
- -u 1090:1090
- -p #{LIFECYCLE_PORT}:#{LIFECYCLE_PORT}
+] + env + %W[
- -v /etc/localtime:/etc/localtime:ro
- lifecycle-#{LIFECYCLE_PORT}
+]
+cmd += ['sh', '-c', 'umask 002 && ./lifecycle']
+system(*cmd) diff --git a/container/lifecycle/start-depends b/container/lifecycle/start-depends new file mode 100755 index 0000000..8357fca --- /dev/null +++ b/container/lifecycle/start-depends @@ -0,0 +1 @@
+es
2.23.0