hexsha
stringlengths
40
40
size
int64
2
1.04M
ext
stringclasses
6 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
5
244
max_stars_repo_name
stringlengths
5
96
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
sequence
max_stars_count
int64
1
84.9k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
5
244
max_issues_repo_name
stringlengths
5
96
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
sequence
max_issues_count
int64
1
98.3k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
5
244
max_forks_repo_name
stringlengths
5
96
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
sequence
max_forks_count
int64
1
36.6k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
2
1.04M
avg_line_length
float64
1
11.9k
max_line_length
int64
1
548k
alphanum_fraction
float64
0
1
fa9b60d5b31c05ee2f01747dfa6f1ac5574fd356
4,715
yml
YAML
Lede-openwrt.yml
000888xxx/youku
4839538308dad8ae5b42a8318b9059d857747cae
[ "MIT" ]
3
2020-10-28T06:54:14.000Z
2020-10-29T10:57:53.000Z
Lede-openwrt.yml
000888xxx/youku
4839538308dad8ae5b42a8318b9059d857747cae
[ "MIT" ]
null
null
null
Lede-openwrt.yml
000888xxx/youku
4839538308dad8ae5b42a8318b9059d857747cae
[ "MIT" ]
null
null
null
# # # 感谢p3terx大神的一键编译脚本 # # Copyright (C) 2019 P3TERX <https://p3terx.com> # <https://github.com/P3TERX/Actions-OpenWrt.git> # #修改以下代码或者开启触发开关都好,要严格按格式对好,前面有多少空格也要看清楚 # name: Lede-OpenWrt 固件 on: repository_dispatch: #编辑任意指定文件触发开始编译(去掉下面5个#开启,最下面一行是指定修改什么文件就触发编译,我现在是修改diy.config文件触发) # push: # branches: # - patch-2 # paths: # - 'diy.config' #release发布触发开始编译(只是一个触发条件,不会发布的,又麻烦,没卵用,不用研究) # release: # types: published #定时触发开始编译(utc時間) # schedule: # - cron: 0 8 */9 * * #点☆Star触发开始编译 watch: # types: started env: REPO_URL: https://github.com/coolsnowwolf/lede REPO_BRANCH: patch-2 FEEDS_CONF: feeds.conf.default CONFIG_FILE: diy.config DIY_OP_SH: diy-lede.sh SSH_ACTIONS: true UPLOAD_BIN_DIR: false UPLOAD_FIRMWARE: true UPLOAD_COWTRANSFER: false UPLOAD_WETRANSFER: false TZ: Asia/Shanghai jobs: build: name: 编译OpenWrt-lede固件 runs-on: ubuntu-18.04 if: github.event.repository.owner.id == github.event.sender.id steps: - name: 准备完毕 uses: actions/checkout@main - name: 开始安装编译所需系统 env: DEBIAN_FRONTEND: noninteractive run: | sudo rm -rf /etc/apt/sources.list.d/* /usr/share/dotnet /usr/local/lib/android /opt/ghc sudo -E apt-get -qq update sudo -E apt-get -qq install $(curl -fsSL git.io/depends-ubuntu-1804) sudo -E apt-get -qq autoremove --purge sudo -E apt-get -qq clean sudo timedatectl set-timezone "$TZ" sudo mkdir -p /workdir sudo chown $USER:$GROUPS /workdir - name: 下载lede源码 working-directory: /workdir run: | df -hT $PWD git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt ln -sf /workdir/openwrt $GITHUB_WORKSPACE/openwrt - name: 加载diy-lede.sh跟feeds.conf.default设置 run: | [ -e $FEEDS_CONF ] && mv $FEEDS_CONF openwrt/feeds.conf.default chmod +x $DIY_OP_SH cd openwrt $GITHUB_WORKSPACE/$DIY_OP_SH - name: 下载diy-lede.sh跟feeds.conf.default自定义软件 run: cd openwrt && ./scripts/feeds update -a - name: 安装自定义软件 run: cd openwrt && ./scripts/feeds install -a - name: 加载diy.config设置 run: | [ -e files ] && mv files openwrt/files [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config - name: SSH远程连接服务器配置固件 uses: P3TERX/debugger-action@main if: env.SSH_ACTIONS == 'false' || contains(github.event.action, 'ssh') - name: 下载软件包 id: package run: | cd openwrt make defconfig make download -j8 find dl -size -1024c -exec ls -l {} \; find dl -size -1024c -exec rm -f {} \; - name: 开始编译固件 id: compile run: | cd openwrt echo -e "$(nproc) thread compile" make -j$(nproc) || make -j1 || make -j1 V=s echo "::set-output name=status::success" grep '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' > DEVICE_NAME [ -s DEVICE_NAME ] && echo "::set-env name=DEVICE_NAME::_$(cat DEVICE_NAME)" echo "::set-env name=FILE_DATE::_$(date +"%Y%m%d%H%M")" - name: 检查github储存空间情况 if: (!cancelled()) run: df -hT - name: 上传bin文件夹(固件+ipk)在github空间 uses: actions/upload-artifact@main if: steps.compile.outputs.status == 'success' && env.UPLOAD_BIN_DIR == 'false' with: name: OpenWrt_Lede_bin${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} path: openwrt/bin - name: 整理固件文件夹 id: organize if: env.UPLOAD_FIRMWARE == 'true' && !cancelled() run: | cd openwrt/bin/targets/*/* rm -rf packages echo "::set-env name=FIRMWARE::$PWD" echo "::set-output name=status::success" - name: 上传固件在github空间 uses: actions/upload-artifact@main if: steps.organize.outputs.status == 'success' && !cancelled() with: name: OpenWrt_Lede${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} path: ${{ env.FIRMWARE }} - name: 上传固件到cowtransfer网盘 if: steps.organize.outputs.status == 'success' && env.UPLOAD_COWTRANSFER == 'true' && !cancelled() run: | curl -fsSL git.io/file-transfer | sh ./transfer cow --block 2621440 -s -p 64 --no-progress ${FIRMWARE} 2>&1 | tee cowtransfer.log echo "::warning file=cowtransfer.com::$(cat cowtransfer.log | grep https)" - name: 上传固件到WeTransfer网盘 if: steps.organize.outputs.status == 'success' && env.UPLOAD_WETRANSFER == 'true' && !cancelled() run: | curl -fsSL git.io/file-transfer | sh ./transfer wet -s -p 16 --no-progress ${FIRMWARE} 2>&1 | tee wetransfer.log echo "::warning file=wetransfer.com::$(cat wetransfer.log | grep https)"
28.75
104
0.61421
e3c151a1a46a99f0b49516cfda326cbbd5659cb0
4,701
yml
YAML
.github/workflows/youku-L1C.yml
000888xxx/youku
4839538308dad8ae5b42a8318b9059d857747cae
[ "MIT" ]
3
2020-10-28T06:54:14.000Z
2020-10-29T10:57:53.000Z
.github/workflows/youku-L1C.yml
000888xxx/youku
4839538308dad8ae5b42a8318b9059d857747cae
[ "MIT" ]
null
null
null
.github/workflows/youku-L1C.yml
000888xxx/youku
4839538308dad8ae5b42a8318b9059d857747cae
[ "MIT" ]
null
null
null
# # # 感谢p3terx大神的一键编译脚本 # # Copyright (C) 2019 P3TERX <https://p3terx.com> # <https://github.com/P3TERX/Actions-OpenWrt.git> # #修改以下代码或者开启触发开关都好,要严格按格式对好,前面有多少空格也要看清楚 # name: Lede-OpenWrt 固件 on: repository_dispatch: #编辑任意指定文件触发开始编译(去掉下面5个#开启,最下面一行是指定修改什么文件就触发编译,我现在是修改diy.config文件触发) # push: # branches: # - master # paths: # - 'diy.config' #release发布触发开始编译(只是一个触发条件,不会发布的,又麻烦,没卵用,不用研究) # release: # types: published #定时触发开始编译(utc時間) # schedule: # - cron: 0 8 */9 * * #点☆Star触发开始编译 watch: # types: started env: REPO_URL: https://github.com/Lienol/openwrt REPO_BRANCH: 19.07 FEEDS_CONF: feeds.conf.default CONFIG_FILE: diy.config DIY_OP_SH: diy-lede.sh SSH_ACTIONS: true UPLOAD_BIN_DIR: false UPLOAD_FIRMWARE: true UPLOAD_COWTRANSFER: false UPLOAD_WETRANSFER: false TZ: Asia/Shanghai jobs: build: name: 编译OpenWrt-lede固件 runs-on: ubuntu-18.04 if: github.event.repository.owner.id == github.event.sender.id steps: - name: 准备完毕 uses: actions/checkout@main - name: 开始安装编译所需系统 env: DEBIAN_FRONTEND: noninteractive run: | sudo rm -rf /etc/apt/sources.list.d/* /usr/share/dotnet /usr/local/lib/android /opt/ghc sudo -E apt-get -qq update sudo -E apt-get -qq install $(curl -fsSL git.io/depends-ubuntu-1804) sudo -E apt-get -qq autoremove --purge sudo -E apt-get -qq clean sudo timedatectl set-timezone "$TZ" sudo mkdir -p /workdir sudo chown $USER:$GROUPS /workdir - name: 下载lede源码 working-directory: /workdir run: | df -hT $PWD git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt ln -sf /workdir/openwrt $GITHUB_WORKSPACE/openwrt - name: 加载diy-lede.sh跟feeds.conf.default设置 run: | [ -e $FEEDS_CONF ] && mv $FEEDS_CONF openwrt/feeds.conf.default chmod +x $DIY_OP_SH cd openwrt $GITHUB_WORKSPACE/$DIY_OP_SH - name: 下载diy-lede.sh跟feeds.conf.default自定义软件 run: cd openwrt && ./scripts/feeds update -a - name: 安装自定义软件 run: cd openwrt && ./scripts/feeds install -a - name: 加载diy.config设置 run: | [ -e files ] && mv files openwrt/files [ -e $CONFIG_FILE ] && mv $CONFIG_FILE openwrt/.config - name: SSH远程连接服务器配置固件 uses: P3TERX/debugger-action@main if: env.SSH_ACTIONS == 'true' || contains(github.event.action, 'ssh') - name: 下载软件包 id: package run: | cd openwrt make defconfig make download -j8 find dl -size -1024c -exec ls -l {} \; find dl -size -1024c -exec rm -f {} \; - name: 开始编译固件 id: compile run: | cd openwrt echo -e "$(nproc) thread compile" make -j$(nproc) || make -j1 || make -j1 V=s echo "::set-output name=status::success" grep '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' > DEVICE_NAME [ -s DEVICE_NAME ] && echo "::set-env name=DEVICE_NAME::_$(cat DEVICE_NAME)" echo "::set-env name=FILE_DATE::_$(date +"%Y%m%d%H%M")" - name: 检查github储存空间情况 if: (!cancelled()) run: df -hT - name: 上传bin文件夹(固件+ipk)在github空间 uses: actions/upload-artifact@main if: steps.compile.outputs.status == 'success' && env.UPLOAD_FIRMWARE == 'false' with: name: OpenWrt_Lede_bin${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} path: openwrt/bin - name: 整理固件文件夹 id: organize if: env.UPLOAD_FIRMWARE == 'true' && !cancelled() run: | cd openwrt/bin/targets/*/* rm -rf packages echo "::set-env name=FIRMWARE::$PWD" echo "::set-output name=status::success" - name: 上传固件在github空间 uses: actions/upload-artifact@main if: steps.organize.outputs.status == 'success' && !cancelled() with: name: OpenWrt_Lede${{ env.DEVICE_NAME }}${{ env.FILE_DATE }} path: ${{ env.FIRMWARE }} - name: 上传固件到cowtransfer网盘 if: steps.organize.outputs.status == 'success' && env.UPLOAD_COWTRANSFER == 'true' && !cancelled() run: | curl -fsSL git.io/file-transfer | sh ./transfer cow --block 2621440 -s -p 64 --no-progress ${FIRMWARE} 2>&1 | tee cowtransfer.log echo "::warning file=cowtransfer.com::$(cat cowtransfer.log | grep https)" - name: 上传固件到WeTransfer网盘 if: steps.organize.outputs.status == 'success' && env.UPLOAD_WETRANSFER == 'true' && !cancelled() run: | curl -fsSL git.io/file-transfer | sh ./transfer wet -s -p 16 --no-progress ${FIRMWARE} 2>&1 | tee wetransfer.log echo "::warning file=wetransfer.com::$(cat wetransfer.log | grep https)"
30.134615
104
0.614976
9fbe1a5e6cd0f187f503bd5c7df71a188fe61a46
8,762
yml
YAML
_config.yml
0008mari/0008mari.github.io
12a1ad3377e6565225594be71afb1d5dcf438f10
[ "MIT" ]
null
null
null
_config.yml
0008mari/0008mari.github.io
12a1ad3377e6565225594be71afb1d5dcf438f10
[ "MIT" ]
null
null
null
_config.yml
0008mari/0008mari.github.io
12a1ad3377e6565225594be71afb1d5dcf438f10
[ "MIT" ]
null
null
null
# Welcome to Jekyll! # # This config file is meant for settings that affect your entire site, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # `jekyll serve`. If you change this file, please restart the server process. # Theme Settings # # Review documentation to determine if you should use `theme` or `remote_theme` # https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/#installing-the-theme # theme : "minimal-mistakes-jekyll" # remote_theme : "mmistakes/minimal-mistakes" minimal_mistakes_skin : "sunrise" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise" # Site Settings locale : "ko_KR.utf8" title : "귀여운정연이" title_separator : "-" subtitle : "기가막힌다" # site tagline that appears below site title in masthead name : "김정연" description : "블로그 하나 만들기 힘들다" url : https://0008mari.github.io # the base hostname & protocol for your site e.g. "https://mmistakes.github.io" baseurl : # the subpath of your site, e.g. "/blog" repository : 0008mari/0008mari.github.io # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes" teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png" logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png" masthead_title : # overrides the website title displayed in the masthead, use " " for no title # breadcrumbs : false # true, false (default) words_per_minute : 200 comments: provider : # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom" disqus: shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname- discourse: server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org facebook: # https://developers.facebook.com/docs/plugins/comments appid : num_posts : # 5 (default) colorscheme : # "light" (default), "dark" utterances: theme : # "github-light" (default), "github-dark" issue_term : # "pathname" (default) giscus: repo_id : # Shown during giscus setup at https://giscus.app category_name : # Full text name of the category category_id : # Shown during giscus setup at https://giscus.app discussion_term : # "pathname" (default), "url", "title", "og:title" reactions_enabled : # '1' for enabled (default), '0' for disabled theme : # "light" (default), "dark", "dark_dimmed", "transparent_dark", "preferred_color_scheme" staticman: branch : # "master" endpoint : # "https://{your Staticman v3 API}/v3/entry/github/" reCaptcha: siteKey : secret : atom_feed: path : # blank (default) uses feed.xml hide : # true, false (default) search : # true, false (default) search_full_content : # true, false (default) search_provider : # lunr (default), algolia, google algolia: application_id : # YOUR_APPLICATION_ID index_name : # YOUR_INDEX_NAME search_only_api_key : # YOUR_SEARCH_ONLY_API_KEY powered_by : # true (default), false google: search_engine_id : # YOUR_SEARCH_ENGINE_ID instant_search : # false (default), true # SEO Related google_site_verification : bing_site_verification : yandex_site_verification : naver_site_verification : # Social Sharing twitter: username : facebook: username : app_id : publisher : og_image : # Open Graph/Twitter default site image # For specifying social profiles # - https://developers.google.com/structured-data/customize/social-profiles social: type : # Person or Organization (defaults to Person) name : # If the user or organization name differs from the site's name links: # An array of links to social media profiles # Analytics analytics: provider : false # false (default), "google", "google-universal", "google-gtag", "custom" google: tracking_id : anonymize_ip : # true, false (default) # Site Author author: name : "정연" avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg" bio : "Hidoi Nigeru" location : "우리집" email : "[email protected]" links: - label: "Email" icon: "fas fa-fw fa-envelope-square" # url: "mailto:[email protected]" - label: "Website" icon: "fas fa-fw fa-link" # url: "https://your-website.com" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" # url: "https://twitter.com/" - label: "Facebook" icon: "fab fa-fw fa-facebook-square" # url: "https://facebook.com/" - label: "GitHub" icon: "fab fa-fw fa-github" # url: "https://github.com/" - label: "Instagram" icon: "fab fa-fw fa-instagram" # url: "https://instagram.com/" # Site Footer footer: links: - label: "Twitter" icon: "fab fa-fw fa-twitter-square" # url: - label: "Facebook" icon: "fab fa-fw fa-facebook-square" # url: - label: "GitHub" icon: "fab fa-fw fa-github" # url: - label: "GitLab" icon: "fab fa-fw fa-gitlab" # url: - label: "Bitbucket" icon: "fab fa-fw fa-bitbucket" # url: - label: "Instagram" icon: "fab fa-fw fa-instagram" # url: # Reading Files include: - .htaccess - _pages exclude: - "*.sublime-project" - "*.sublime-workspace" - vendor - .asset-cache - .bundle - .jekyll-assets-cache - .sass-cache - assets/js/plugins - assets/js/_main.js - assets/js/vendor - Capfile - CHANGELOG - config - Gemfile - Gruntfile.js - gulpfile.js - LICENSE - log - node_modules - package.json - package-lock.json - Rakefile - README - tmp - /docs # ignore Minimal Mistakes /docs - /test # ignore Minimal Mistakes /test keep_files: - .git - .svn encoding: "utf-8" markdown_ext: "markdown,mkdown,mkdn,mkd,md" # Conversion markdown: kramdown highlighter: rouge lsi: false excerpt_separator: "\n\n" incremental: false # Markdown Processing kramdown: input: GFM hard_wrap: false auto_ids: true footnote_nr: 1 entity_output: as_char toc_levels: 1..6 smart_quotes: lsquo,rsquo,ldquo,rdquo enable_coderay: false # Sass/SCSS sass: sass_dir: _sass style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style # Outputting permalink: /:categories/:title/ paginate: 5 # amount of posts to show paginate_path: /page:num/ timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # Plugins (previously gems:) plugins: - jekyll-paginate - jekyll-sitemap - jekyll-gist - jekyll-feed - jekyll-include-cache # mimic GitHub Pages with --safe whitelist: - jekyll-paginate - jekyll-sitemap - jekyll-gist - jekyll-feed - jekyll-include-cache # Archives # Type # - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default) # - Jekyll Archives plugin archive pages ~> type: jekyll-archives # Path (examples) # - Archive page should exist at path when using Liquid method or you can # expect broken links (especially with breadcrumbs enabled) # - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/ # - <base_path>/categories/my-awesome-category/index.html ~> path: /categories/ # - <base_path>/my-awesome-category/index.html ~> path: / category_archive: type: liquid path: /categories/ tag_archive: type: liquid path: /tags/ # https://github.com/jekyll/jekyll-archives # jekyll-archives: # enabled: # - categories # - tags # layouts: # category: archive-taxonomy # tag: archive-taxonomy # permalinks: # category: /categories/:name/ # tag: /tags/:name/ # HTML Compression # - https://jch.penibelst.de/ compress_html: clippings: all ignore: envs: development # Defaults defaults: # _posts - scope: path: "" type: posts values: layout: single author_profile: true read_time: true comments: # true share: true related: true
30.213793
142
0.622004
df8362bec0e776d7a5929fa20ab63fe073345232
279
yml
YAML
.travis.yml
000D/posthtml-expressions
3ae310d2e83bcaaf24ee7b8ea16a7181693438a4
[ "MIT" ]
1
2020-09-19T23:46:04.000Z
2020-09-19T23:46:04.000Z
.travis.yml
000D/posthtml-expressions
3ae310d2e83bcaaf24ee7b8ea16a7181693438a4
[ "MIT" ]
null
null
null
.travis.yml
000D/posthtml-expressions
3ae310d2e83bcaaf24ee7b8ea16a7181693438a4
[ "MIT" ]
null
null
null
language: node_js node_js: - "stable" - "lts/*" - 10 cache: directories: - node_modules before_script: - npm i script: - npm test after_success: - './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls' notifications: email: false
16.411765
87
0.684588
176943d0c5ae9b0c8f751bdbcd6adfa0b3a7cc43
520
yml
YAML
.travis.yml
000Justin000/IsingLite.jl
bc3526d7565a7e62bd64fac075234c33ada6dee0
[ "MIT" ]
5
2017-07-18T15:54:52.000Z
2021-05-15T16:15:37.000Z
.travis.yml
000Justin000/IsingLite.jl
bc3526d7565a7e62bd64fac075234c33ada6dee0
[ "MIT" ]
null
null
null
.travis.yml
000Justin000/IsingLite.jl
bc3526d7565a7e62bd64fac075234c33ada6dee0
[ "MIT" ]
2
2019-11-01T15:51:19.000Z
2021-03-08T13:05:34.000Z
language: cpp compiler: - clang notifications: email: false env: matrix: - JULIAVERSION="juliareleases" - JULIAVERSION="julianightlies" before_install: - sudo add-apt-repository ppa:staticfloat/julia-deps -y - sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y - sudo apt-get update -qq -y - sudo apt-get install libpcre3-dev julia -y - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi script: - julia -e 'Pkg.init(); Pkg.add("PyPlot"); Pkg.clone(pwd()); Pkg.test("IsingLite")'
28.888889
85
0.690385
f84904e3df42a5fb646bad64e093048acd070159
2,221
yml
YAML
.glotter.yml
000Nobody/sample-programs
e42da1e28c6d4438bdaebc5991909b8676b1a431
[ "MIT" ]
null
null
null
.glotter.yml
000Nobody/sample-programs
e42da1e28c6d4438bdaebc5991909b8676b1a431
[ "MIT" ]
null
null
null
.glotter.yml
000Nobody/sample-programs
e42da1e28c6d4438bdaebc5991909b8676b1a431
[ "MIT" ]
null
null
null
settings: acronym_scheme: "two_letter_limit" source_root: "./archive" projects: baklava: words: - "baklava" requires_parameters: false binarysearch: words: - "binary" - "search" requires_parameters: true bubblesort: words: - "bubble" - "sort" requires_parameters: true capitalize: words: - "capitalize" requires_parameters: true convexhull: words: - "convex" - "hull" requires_parameters: true evenodd: words: - "even" - "odd" requires_parameters: true factorial: words: - "factorial" requires_parameters: true fibonacci: words: - "fibonacci" requires_parameters: true fileio: words: - "file" - "io" requires_parameters: false acronyms: - "io" fizzbuzz: words: - "fizz" - "buzz" requires_parameters: false helloworld: words: - "hello" - "world" requires_parameters: false insertionsort: words: - "insertion" - "sort" requires_parameters: true jobsequencing: words: - "job" - "sequencing" requires_parameters: true lcs: words: - "lcs" acronyms: - "lcs" requires_parameters: true linearsearch: words: - "linear" - "search" requires_parameters: true mergesort: words: - "merge" - "sort" requires_parameters: true mst: words: - "mst" acronyms: - "mst" requires_parameters: true prime: words: - "prime" - "number" requires_parameters: true quicksort: words: - "quick" - "sort" requires_parameters: true quine: words: - "quine" requires_parameters: false rot13: words: - "rot" - "13" requires_parameters: true reversestring: words: - "reverse" - "string" requires_parameters: true romannumeral: words: - "roman" - "numeral" requires_parameters: true selectionsort: words: - "selection" - "sort" requires_parameters: true sleepsort: words: - "sleep" - "sort" requires_parameters: true
17.084615
36
0.56326
10e001c973d07f2389b0d76cac175813fa765a39
1,079
yml
YAML
.github/workflows/greetings.yml
000Nobody/sample-programs
e42da1e28c6d4438bdaebc5991909b8676b1a431
[ "MIT" ]
null
null
null
.github/workflows/greetings.yml
000Nobody/sample-programs
e42da1e28c6d4438bdaebc5991909b8676b1a431
[ "MIT" ]
null
null
null
.github/workflows/greetings.yml
000Nobody/sample-programs
e42da1e28c6d4438bdaebc5991909b8676b1a431
[ "MIT" ]
null
null
null
name: Greetings on: [pull_request, issues] jobs: greeting: runs-on: ubuntu-latest steps: - uses: actions/first-interaction@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} pr-message: | Hey @${{ github.actor }}! Thanks for contributing to this project! We are a rather small team, so it may take some time to process this request. In the meantime, there are several ways you can make yourself a part of The Renegade Coder community. For instance, you can: - Subscribe to the [monthly newsletter](https://newsletter.therenegadecoder.com/) - Become a [patron](https://www.patreon.com/TheRenegadeCoder) - Join us on [Discord](https://discord.gg/Jhmtj7Z) - And, check out the rest of the [list](https://therenegadecoder.com/blog/ways-you-can-help-grow-the-renegade-coder/) which includes links to The Renegade Coder [YouTube channel](https://www.youtube.com/channel/UCpyoVwOqYRlSAEUPEn7P9hw) and [Twitter account](https://twitter.com/RenegadeCoder94) Thanks for your help!
51.380952
305
0.690454
07fdf42564fc22fe5e49e08c808f448d482ffded
680
yml
YAML
.travis.yml
000SergeyMayer000/-job4j
60bdba019fa2a240bf241aac1d67dea1f49144c0
[ "Apache-2.0" ]
null
null
null
.travis.yml
000SergeyMayer000/-job4j
60bdba019fa2a240bf241aac1d67dea1f49144c0
[ "Apache-2.0" ]
null
null
null
.travis.yml
000SergeyMayer000/-job4j
60bdba019fa2a240bf241aac1d67dea1f49144c0
[ "Apache-2.0" ]
null
null
null
# используем язык java. Travis CI поддерживает другие языки тоже. language: java jdk: - openjdk11 # используем режим обычного пользователя для сборки проекта. sudo: false # после выполнения сборки запустить скрипт, который будет собирать статистику по JaCoCo # Здесь используется сторонни сервис https://codecov.io/ after_success: - bash <(curl -s https://codecov.io/bash) # Отправлять уведомление на почту[email protected](Изменить на свою) если сборка упала notifications: email: recipients: [email protected] on_success: never # default: change on_failure: always # default: always env: global: CODECOV_TOKEN="a742887b-d524-499c-a45c-30f10b8e6233"
29.565217
87
0.764706
92aee0fee4d521ee4003571d3d0f9afde77224c3
684
yml
YAML
.travis.yml
000SergeyMayer000/job4j_design
648b0b542ae60ab799a20f0b2d9fac72fe934831
[ "Apache-2.0" ]
null
null
null
.travis.yml
000SergeyMayer000/job4j_design
648b0b542ae60ab799a20f0b2d9fac72fe934831
[ "Apache-2.0" ]
null
null
null
.travis.yml
000SergeyMayer000/job4j_design
648b0b542ae60ab799a20f0b2d9fac72fe934831
[ "Apache-2.0" ]
null
null
null
# используем язык java. Travis CI поддерживает другие языки тоже. language: java jdk: - openjdk13 # используем режим обычного пользователя для сборки проекта. sudo: false # после выполнения сборки запустить скрипт, который будет собирать статистику по JaCoCo # Здесь используется сторонни сервис https://codecov.io/ after_success: - bash <(curl -s https://codecov.io/bash) # Отправлять уведомление на почту[email protected](Изменить на свою) если сборка упала notifications: email: recipients: [email protected] on_success: never # default: change on_failure: always # default: always env: global: - CODECOV_TOKEN="b848429d-1951-4665-bd73-8c688a7e6cfd"
29.73913
87
0.760234
f1c2686dfaad5b06d3fec705a839d2b5bf62bd86
1,069
yml
YAML
.github/workflows/stale.yml
000Zer000/pyinstaller
63d83f88ec7bbc2a25b1b39287bf52ad78ea2755
[ "Apache-2.0" ]
1
2021-06-07T13:29:02.000Z
2021-06-07T13:29:02.000Z
.github/workflows/stale.yml
000Zer000/pyinstaller
63d83f88ec7bbc2a25b1b39287bf52ad78ea2755
[ "Apache-2.0" ]
1
2022-03-12T01:02:36.000Z
2022-03-12T01:02:36.000Z
.github/workflows/stale.yml
TheOddZer0/pyinstaller
63d83f88ec7bbc2a25b1b39287bf52ad78ea2755
[ "Apache-2.0" ]
null
null
null
n: schedule: - cron: "0 15 * * 1-5" name: Stale Bot jobs: build: name: stale runs-on: ubuntu-latest steps: - name: stale id: stale uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: 15 days-before-close: 30 stale-issue-message: | Hi! This issue has been left open with no activity for 15 days. We get a lot of issues each day so we currently close issues after 30 days of inactivity. It’s been at least 15 days since the last update here. If we missed your issue, please reply to avoid closing it, If this issue have been fixed, You can close it close-issue-message: | Hi again! This issue have been closed due to no activity for a month or more, even after marking it as stale, If your issue still persists, You can open a new issue exempt-issue-labels: | feature, @high, pull-request-wanted, not-stale, pinned
36.862069
156
0.595884
26eeaed1582f737240434ac41a8884c8795f856d
295
yaml
YAML
.pre-commit-config.yaml
000alen/Phaedra
913766c0dafc46811488430c14a153af31f7133a
[ "MIT" ]
4
2021-09-20T17:31:15.000Z
2021-10-14T19:28:58.000Z
.pre-commit-config.yaml
000alen/Phaedra
913766c0dafc46811488430c14a153af31f7133a
[ "MIT" ]
6
2021-10-09T23:41:20.000Z
2021-12-14T23:53:32.000Z
.pre-commit-config.yaml
000alen/Phaedra
913766c0dafc46811488430c14a153af31f7133a
[ "MIT" ]
3
2021-09-28T14:48:28.000Z
2021-10-20T01:04:16.000Z
repos: - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.910-1 hooks: - id: mypy - repo: https://github.com/psf/black rev: 19.3b0 hooks: - id: black - repo: https://github.com/pre-commit/mirrors-prettier rev: v2.4.1 hooks: - id: prettier
21.071429
56
0.586441
e093d460d59eb22626783b38eb7081ba460ee742
2,447
yml
YAML
.github/workflows/codeql-analysis.yml
000alen/Phaedra
913766c0dafc46811488430c14a153af31f7133a
[ "MIT" ]
4
2021-09-20T17:31:15.000Z
2021-10-14T19:28:58.000Z
.github/workflows/codeql-analysis.yml
000alen/Phaedra
913766c0dafc46811488430c14a153af31f7133a
[ "MIT" ]
6
2021-10-09T23:41:20.000Z
2021-12-14T23:53:32.000Z
.github/workflows/codeql-analysis.yml
000alen/Phaedra
913766c0dafc46811488430c14a153af31f7133a
[ "MIT" ]
3
2021-09-28T14:48:28.000Z
2021-10-20T01:04:16.000Z
# For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. # # ******** NOTE ******** # We have attempted to detect the languages in your repository. Please check # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # name: "CodeQL" on: push: branches: [ main ] pull_request: # The branches below must be a subset of the branches above branches: [ main ] schedule: - cron: '39 18 * * 2' jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write strategy: fail-fast: false matrix: language: [ 'javascript', 'python' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] # Learn more: # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed steps: - name: Checkout repository uses: actions/checkout@v2 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v1 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines # and modify them (or add more) to build your code if your project # uses a compiled language #- run: | # make bootstrap # make release - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1
33.986111
188
0.66653
59a2dd5a9b724dd7181543cde2b75e26e417f712
4,109
yml
YAML
_config.yml
000hen/zhaccount-doc-site
6f94bf628ba7141588193e3c9ef6214000e48fb0
[ "MIT" ]
null
null
null
_config.yml
000hen/zhaccount-doc-site
6f94bf628ba7141588193e3c9ef6214000e48fb0
[ "MIT" ]
null
null
null
_config.yml
000hen/zhaccount-doc-site
6f94bf628ba7141588193e3c9ef6214000e48fb0
[ "MIT" ]
null
null
null
# (string) Title of your wiki title: 3ZH-Studio Developer Document # (string) Description of your wiki description: # (boolean) Enable/disable wiki page list in sidebar show_wiki_pages: true # (integer) Maximum number of wiki page to shown in sidebar show_wiki_pages_limit: 10 # (boolean) Enable/disable blog feature blog_feature: true # (boolean) Enable/disable wiki posts list in sidebar (needs blog_feature enabled) show_wiki_posts: true # (integer) Maximum number of wiki posts to shown in sidebar show_wiki_posts_limit: 10 # from jekyll (read jekyll doc) paginate: 5 paginate_path: "/blog/page:num" permalink: /blog/posts/:year/:month/:day/:title:output_ext # (boolean) Enable/disable download buttons in sidebar show_downloads: true # (string) Specify branch rendered by gitpages allowing wiki tool buttons to work git_branch: "master" # (string) Url of logo image, it can be full, absolute or relative. logo_url: # (string) The UA-XXXXX-Y code from google analytic to enable GA on your wiki google_analytics: # (string) folder where wiki pages are stored, it's needed for tool buttons wiki_folder: "wiki" # (boolean) if you're using github wiki as submodule then this config # must be enabled to allow tool buttons to work properly use_github_wiki: false # (boolean) Enable "Edit with Prose.io" button in tools, it's a 3rd party # service to edit github markdown pages easily use_prose_io: true # Select search_engine component from: # - js: it uses a built in javascript component that uses generated js object # - js_rss: it uses a built in javascript component that uses generated sitemap_full.xml to search inside your wiki with lunr library (slow and experimental) # - github : it uses internal github repository search # - google : it uses cse search bar, you need to configure google_cse_token # search_engine : "js" # Setting google custom search engine for google # cse search bar (https://cse.google.it/cse/) google_cse_token: # (string) path of site root. Normally it's must be empty because _config.yml resides in the root of your repository. # If you have _config.yml and your site in a subfolder, then change this config accordly site_root: # # Jekyll configurations # # You can customize it changing default layout for all pages # More info: https://jekyllrb.com/docs/configuration/ # # git-wiki includes some internal themes that you can choose # check _layouts folder # markdown: kramdown highlighter: rouge kramdown: input: GFM syntax_highlighter: rouge defaults: - scope: path: "wiki" values: permalink: /:basename - scope: path: "" # an empty string here means all files in the project values: layout: "git-wiki-default" - scope: path: "" type: "pages" values: layout: "git-wiki-default" - scope: path: "" type: "posts" values: layout: "git-wiki-post" - scope: path: blog values: layout: "git-wiki-blog" sass: style: compressed plugins: - jekyll-avatar - jekyll-coffeescript - jekyll-default-layout - jekyll-feed - jekyll-gist - jekyll-paginate - jekyll-mentions - jekyll-optional-front-matter - jekyll-readme-index - jekyll-redirect-from - jekyll-remote-theme - jekyll-relative-links - jekyll-seo-tag - jekyll-sitemap - jekyll-titles-from-headings - jemoji # # INCLUDING HOOKS # They are optional, change them only if you need # Check wiki documentation to learn how they work # inc_before_toc : inc_after_toc : inc_before_content : inc_after_content : inc_before_footer : inc_after_footer : inc_before_head : inc_after_head : inc_before_meta : inc_after_meta : inc_before_scripts : inc_after_scripts : inc_before_styles : inc_after_styles : inc_before_header : inc_after_header : inc_before_tail : inc_after_tail : inc_before_tools : inc_after_tools : inc_before_page_list : inc_after_page_list : inc_before_post_list : inc_after_post_list :
28.143836
159
0.714772
b0fe36c4ab31ff1596d783d58e6a40f80c84f040
2,090
yml
YAML
_config.yml
000namc/000namc.github.io
1bb0dea997c1651e681362bad9aa05fd65342f7a
[ "MIT" ]
3
2018-03-07T11:31:52.000Z
2019-02-28T08:53:56.000Z
_config.yml
000namc/000namc.github.io
1bb0dea997c1651e681362bad9aa05fd65342f7a
[ "MIT" ]
null
null
null
_config.yml
000namc/000namc.github.io
1bb0dea997c1651e681362bad9aa05fd65342f7a
[ "MIT" ]
null
null
null
# Site Settings encoding: UTF-8 lang: en # Language code as defined in _data/i18n.yml. en, en-gb, en-us, zh, zh-cn, zh-tw etc. permalink: /:year/:month/:day/:title/ whitelist: [jekyll-feed, jekyll-redirect-from, jekyll-seo-tag, jekyll-sitemap, jekyll-org] plugins: - jekyll-feed - jekyll-redirect-from - jekyll-seo-tag - jekyll-sitemap - jekyll-org markdown: kramdown kramdown: auto_id_prefix: 'heading-' smart_quotes: ["apos", "apos", "quot", "quot"] toc_levels: 1..3 sass: style: compressed # Site Data url: # the base hostname & protocol for your site, e.g. http://example.com baseurl: # the subpath of your site, e.g. /blog title: Seong-Uk's Blog description: "A Blog for Machine Learning and Optimization" keywords: 'Blog, Machine Learning, Optimization' author: name: job_title: location: email: [email protected] social_links: - name: facebook url: https://www.facebook.com/profile.php?id=100011446640614 - name: github url: https://github.com/000namc - name: instagram url: https://www.instagram.com/000namc/ - name: linkedin url: https://www.linkedin.com/in/seong-uk-nam/ - name: stackoverflow url: - name: twitter url: - name: vk url: home: section1: <h1>Seong-Uk's Blog</h1> section2: <h2>A Blog for Machine Learning and Optimization</h2> section3: <div class="social-links"><a class="ico-github btn" href="https://github.com/000namc" title="View on GitHub"></a></div> blog: cc_license: http://creativecommons.org/licenses/by-sa/4.0/ # A link to CC License of your choice. cc_license_image: /assets/images/theme/cc-by-sa.png # An image of your CC License. footer_content: A Blog for Machine Learning and Optimization. disqus: shortname: # e.g. yizeng public_key: # e.g. ULZ0b9TFefCUJHKQd4JCKv2v3u27YoG7YG8zXPewkWrT333Z0Se9YnxLzoV6VM8W google_analytics: # e.g. 'UA-42456515-5' addthis_public_id: # AddThis sharing plugin. See http://www.addthis.com/. E.g. ra-53329e27694534j5 paths: home: / blog: /blog/ categories: /blog/categories/ tags: /blog/tags/
30.289855
131
0.700478
835e89856ab7a1194d10cef921c157b6a5fff5e4
649
yml
YAML
.github/workflows/deploy.yml
000namc/000namc.github.io
1bb0dea997c1651e681362bad9aa05fd65342f7a
[ "MIT" ]
3
2018-03-07T11:31:52.000Z
2019-02-28T08:53:56.000Z
.github/workflows/deploy.yml
000namc/000namc.github.io
1bb0dea997c1651e681362bad9aa05fd65342f7a
[ "MIT" ]
null
null
null
.github/workflows/deploy.yml
000namc/000namc.github.io
1bb0dea997c1651e681362bad9aa05fd65342f7a
[ "MIT" ]
null
null
null
name: Deploy Project on: push: branches: - develop pull_request: branches: - develop jobs: update: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6 bundler-cache: true - name : bundle install run: | sudo apt-get -yqq install libpq-dev gem install bundler bundle install - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public
22.37931
51
0.557781
119e024e26ee473dd17a7bc622ac25917b2bf039
2,109
yml
YAML
.github/workflows/rust.yml
000ylop/lolicon
9687081c7791cafd98dcf3046705e1863594fda1
[ "MIT" ]
5
2021-08-20T10:35:13.000Z
2021-12-31T21:25:38.000Z
.github/workflows/rust.yml
000ylop/lolicon
9687081c7791cafd98dcf3046705e1863594fda1
[ "MIT" ]
null
null
null
.github/workflows/rust.yml
000ylop/lolicon
9687081c7791cafd98dcf3046705e1863594fda1
[ "MIT" ]
1
2021-08-23T14:21:26.000Z
2021-08-23T14:21:26.000Z
# Origin config by @Kilerd name: Build Canary Version on: push: branches: [ main ] jobs: release: name: Release on ${{ matrix.platform }} runs-on: ${{ matrix.os }} strategy: matrix: platform: [macos-x86_64, linux_glibc-x86_64, windows-i686, windows-x86_64] include: - platform: macos-x86_64 target: x86_64-apple-darwin os: macos-latest bin: lolicon - platform: linux_glibc-x86_64 target: x86_64-unknown-linux-gnu os: ubuntu-latest bin: lolicon - platform: windows-i686 target: i686-pc-windows-msvc os: windows-latest bin: lolicon.exe - platform: windows-x86_64 target: x86_64-pc-windows-msvc os: windows-latest bin: lolicon.exe steps: - name: Install toolchain uses: actions-rs/toolchain@v1 with: target: ${{ matrix.target }} toolchain: stable override: true - name: Checkout code uses: actions/checkout@v1 - name: Run code build uses: actions-rs/cargo@v1 with: toolchain: stable command: build args: --release --target ${{ matrix.target }} - name: Prepare assets shell: bash run: | mv target/${{ matrix.target }}/release/${{ matrix.bin }} . if [[ ${{ matrix.target }} != x86_64-apple-darwin ]] then strip ${{ matrix.bin }} fi tar -cvf ${{ matrix.target }}.tar LICENSE.txt ${{ matrix.bin }} - name: Declare some variables # https://stackoverflow.com/a/61699863 id: vars shell: bash run: | echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" - name: Pre-Release uses: softprops/action-gh-release@v1 with: files: ${{ matrix.target }}.tar tag_name: 0.1.0-${{ steps.vars.outputs.sha_short }} prerelease: true
27.038462
82
0.522048
d7691c8e198296e39db56788896f9bedfeb88f84
2,517
yml
YAML
_config.yml
00101010/00101010.github.io
78d3d1bd03e177062c027e163b2b9551c8ab88e1
[ "MIT" ]
null
null
null
_config.yml
00101010/00101010.github.io
78d3d1bd03e177062c027e163b2b9551c8ab88e1
[ "MIT" ]
null
null
null
_config.yml
00101010/00101010.github.io
78d3d1bd03e177062c027e163b2b9551c8ab88e1
[ "MIT" ]
null
null
null
# # This file contains configuration flags to customize your site # # Name of your site (displayed in the header) name: "00101010" # Short bio or description (displayed in the header) description: What ever floats my boat. Mostly CS stuff. # URL of your avatar or profile pic (you could use your GitHub profile pic) avatar: https://avatars3.githubusercontent.com/u/2824022?v=3&s=400 # # Flags below are optional # # Includes an icon in the footer for each username you enter footer-links: dribbble: email: facebook: flickr: github: instagram: linkedin: pinterest: rss: # just type anything here for a working RSS icon twitter: stackoverflow: # your stackoverflow profile, e.g. "users/50476/bart-kiers" youtube: # channel/<your_long_string> or user/<user-name> googleplus: # anything in your profile username that comes after plus.google.com/ # Enter your Disqus shortname (not your username) to enable commenting on posts # You can find your shortname on the Settings page of your Disqus account disqus: # Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking google_analytics: UA-144250495-1 # Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co) # Used for Sitemap.xml and your RSS feed url: # If you're hosting your site at a Project repository on GitHub pages # (http://yourusername.github.io/repository-name) # and NOT your User repository (http://yourusername.github.io) # then add in the baseurl here, like this: "/repository-name" baseurl: "" # # !! You don't need to change any of the configuration flags below !! # permalink: /:title/ # The release of Jekyll Now that you're using version: v1.2.0 # Jekyll 3 now only supports Kramdown for Markdown kramdown: # Use GitHub flavored markdown, including triple backtick fenced code blocks input: GFM # Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting syntax_highlighter: rouge syntax_highlighter_opts: # Use existing pygments syntax highlighting css css_class: 'highlight' # Set the Sass partials directory, as we're using @imports sass: style: :expanded # You might prefer to minify using :compressed # Use the following plug-ins plugins: - jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem - jekyll-feed # Create an Atom feed using the official Jekyll feed gem # Exclude these files from your production _site exclude: - Gemfile - Gemfile.lock - LICENSE - README.md - CNAME
28.931034
88
0.748907
3314f7ec072823182ad03f2e6af85d087f1397c9
1,275
yaml
YAML
deployment/helm/human-connection/templates/deployments/deployment-web.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/deployments/deployment-web.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/deployments/deployment-web.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: apps/v1 kind: Deployment metadata: name: {{ .Release.Name }}-webapp labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: replicas: 2 minReadySeconds: 15 progressDeadlineSeconds: 60 selector: matchLabels: human-connection.org/selector: deployment-webapp template: metadata: name: webapp labels: human-connection.org/commit: {{ .Values.commit }} human-connection.org/selector: deployment-webapp spec: containers: - name: webapp image: "{{ .Values.webappImage }}:{{ .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} envFrom: - configMapRef: name: {{ .Release.Name }}-configmap - secretRef: name: {{ .Release.Name }}-secrets env: - name: HOST value: 0.0.0.0 ports: - containerPort: 3000 resources: {} imagePullPolicy: Always restartPolicy: Always terminationGracePeriodSeconds: 30 status: {}
28.977273
77
0.606275
33aa8a0e0a767c37c7da2ba13c4a27c5c3529c50
1,762
yaml
YAML
deployment/helm/human-connection/templates/deployments/deployment-backend.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/deployments/deployment-backend.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/deployments/deployment-backend.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: apps/v1 kind: Deployment metadata: name: {{ .Release.Name }}-backend labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: replicas: 1 minReadySeconds: 15 progressDeadlineSeconds: 60 strategy: rollingUpdate: maxSurge: 0 maxUnavailable: "100%" selector: matchLabels: human-connection.org/selector: deployment-backend template: metadata: name: deployment-backend annotations: backup.velero.io/backup-volumes: uploads labels: human-connection.org/commit: {{ .Values.commit }} human-connection.org/selector: deployment-backend spec: containers: - name: backend image: "{{ .Values.backendImage }}:{{ .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} envFrom: - configMapRef: name: {{ .Release.Name }}-configmap - secretRef: name: {{ .Release.Name }}-secrets ports: - containerPort: 4000 protocol: TCP resources: {} terminationMessagePath: /dev/termination-log terminationMessagePolicy: File volumeMounts: - mountPath: /nitro-backend/public/uploads name: uploads dnsPolicy: ClusterFirst restartPolicy: Always schedulerName: default-scheduler securityContext: {} terminationGracePeriodSeconds: 30 volumes: - name: uploads persistentVolumeClaim: claimName: uploads-claim status: {}
29.864407
77
0.624291
ac11e76b87b98221669ae1c48cbfeb21dbd2698d
621
yaml
YAML
deployment/helm/human-connection/templates/cluster-issuers/letsencrypt-prod.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/cluster-issuers/letsencrypt-prod.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/cluster-issuers/letsencrypt-prod.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: cert-manager.io/v1alpha2 kind: ClusterIssuer metadata: name: letsencrypt-prod labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: acme: server: https://acme-v02.api.letsencrypt.org/directory email: {{ .Values.supportEmail }} privateKeySecretRef: name: letsencrypt-prod solvers: - http01: ingress: class: nginx
29.571429
77
0.655395
f5c7d5b38923ebba1f5697f9c3d9ef0c3f71d73e
551
yaml
YAML
deployment/helm/human-connection/templates/services/service-neo4j.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/services/service-neo4j.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/services/service-neo4j.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: v1 kind: Service metadata: name: {{ .Release.Name }}-neo4j labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: ports: - name: bolt port: 7687 targetPort: 7687 - name: web port: 7474 targetPort: 7474 selector: human-connection.org/selector: deployment-neo4j
26.238095
77
0.647913
eb8dd65be933ae73d4cb84548570e5cab040601c
1,098
yaml
YAML
deployment/helm/human-connection/templates/ingress/ingress.template.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/ingress/ingress.template.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/ingress/ingress.template.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: extensions/v1beta1 kind: Ingress metadata: name: {{ .Release.Name }}-ingress labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" annotations: kubernetes.io/ingress.class: "nginx" cert-manager.io/cluster-issuer: {{ .Values.letsencryptIssuer }} nginx.ingress.kubernetes.io/proxy-body-size: 10m spec: tls: - hosts: - {{ .Values.domain }} secretName: tls rules: - host: {{ .Values.domain }} http: paths: - path: / backend: serviceName: {{ .Release.Name }}-webapp servicePort: 3000 {{- if .Values.developmentMailserverDomain }} - host: {{ .Values.developmentMailserverDomain }} http: paths: - path: / backend: serviceName: {{ .Release.Name }}-mailserver servicePort: 80 {{- end }}
29.675676
77
0.589253
d762c2a55ede434d1d75f2e5c05f6313f166ce14
551
yaml
YAML
deployment/helm/human-connection/templates/services/service-webapp.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/services/service-webapp.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/services/service-webapp.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: v1 kind: Service metadata: name: {{ .Release.Name }}-webapp labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: ports: - name: {{ .Release.Name }}-webapp port: 3000 protocol: TCP targetPort: 3000 selector: human-connection.org/selector: deployment-webapp
29
77
0.642468
cc9d9fdd77521007bc5ed9439267f6864922a4dc
635
yaml
YAML
deployment/helm/human-connection/templates/cluster-issuers/letsencrypt-staging.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/cluster-issuers/letsencrypt-staging.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/cluster-issuers/letsencrypt-staging.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: cert-manager.io/v1alpha2 kind: ClusterIssuer metadata: name: letsencrypt-staging labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: acme: server: https://acme-staging-v02.api.letsencrypt.org/directory email: {{ .Values.supportEmail }} privateKeySecretRef: name: letsencrypt-staging solvers: - http01: ingress: class: nginx
30.238095
77
0.661417
693b93a1da7472b6e0ff6083864eba0276225362
2,630
yml
YAML
.travis.yml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
.travis.yml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
.travis.yml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
dist: xenial language: node_js node_js: lts/* cache: yarn: false npm: false addons: apt: packages: - libgconf-2-4 snaps: - docker firefox: "latest-esr" install: - yarn global add wait-on # Install Codecov - yarn install --frozen-lockfile - cp backend/.env.template backend/.env before_script: - docker-compose -f docker-compose.yml build --parallel - docker-compose -f docker-compose.yml -f docker-compose.build-and-test.yml build # just tagging, just be quite fast - docker-compose -f docker-compose.yml -f docker-compose.build-and-test.yml up -d - wait-on http://localhost:7474 - docker-compose -f docker-compose.yml -f docker-compose.build-and-test.yml exec backend yarn run db:migrate init script: - export CYPRESS_RETRIES=1 - export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi) - echo "TRAVIS_BRANCH=$TRAVIS_BRANCH, PR=$PR, BRANCH=$BRANCH" # Miscellaneous - ./scripts/translations/sort.sh - ./scripts/translations/missing-keys.sh # Backend - docker-compose exec backend yarn run lint - docker-compose exec backend yarn run test --ci --verbose=false --coverage - docker-compose exec backend yarn run db:seed - docker-compose exec backend yarn run db:reset # Frontend - docker-compose exec webapp yarn run lint - docker-compose exec webapp yarn run test --ci --verbose=false --coverage # Fullstack - docker-compose down - docker-compose -f docker-compose.yml up -d - wait-on http://localhost:7474 # disable for last deploy, because of flakiness! # - yarn run cypress:run --record # - yarn run cucumber # Coverage # disable this uneffective thing for last deploy, because of easyness! # - yarn run codecov after_success: - wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh - chmod +x send.sh - ./send.sh success $WEBHOOK_URL - if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_EVENT_TYPE == "push" ]; then wget https://raw.githubusercontent.com/Human-Connection/Discord-Bot/develop/tester.sh && chmod +x tester.sh && ./tester.sh staging $WEBHOOK_URL; fi after_failure: - wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh - chmod +x send.sh - ./send.sh failure $WEBHOOK_URL before_deploy: - go get -u github.com/tcnksm/ghr - ./scripts/setup_kubernetes.sh deploy: - provider: script script: bash scripts/docker_push.sh on: branch: master - provider: script script: bash scripts/deploy.sh on: branch: master
31.686747
130
0.710266
d641ca8bab1b6fc12cb575d81492a0ee34752582
514
yaml
YAML
deployment/helm/human-connection/templates/services/service-maintenance.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/services/service-maintenance.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/services/service-maintenance.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: v1 kind: Service metadata: name: {{ .Release.Name }}-maintenance labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: ports: - name: web port: 80 targetPort: 80 selector: human-connection.org/selector: deployment-maintenance
28.555556
77
0.651751
8a924f44bdac9d8e6b84b40fda87971249229829
951
yaml
YAML
deployment/helm/human-connection/templates/jobs/job-db-migration.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/jobs/job-db-migration.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/jobs/job-db-migration.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: batch/v1 kind: Job metadata: name: {{ .Release.Name }}-db-migrations labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" annotations: "helm.sh/hook": post-upgrade "helm.sh/hook-weight": "5" "helm.sh/hook-delete-policy": hook-succeeded, hook-failed spec: template: metadata: name: {{ .Release.Name }} spec: restartPolicy: Never containers: - name: db-migrations-job image: "{{ .Values.backendImage }}:latest" command: ["/bin/sh", "-c", "{{ .Values.dbMigrations }}"] envFrom: - configMapRef: name: {{ .Release.Name }}-configmap - secretRef: name: {{ .Release.Name }}-secrets
32.793103
77
0.590957
c174bf2cb11d759b08432590cc50b529a85d99b5
243
yaml
YAML
deployment/volumes/uploads.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/volumes/uploads.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/volumes/uploads.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
--- kind: PersistentVolumeClaim apiVersion: v1 metadata: name: uploads-claim namespace: human-connection spec: accessModes: - ReadWriteOnce resources: requests: storage: {{ .Values.uploadsStorage }}
18.692308
45
0.646091
c060750ec86a392be21488183931492011859222
244
yaml
YAML
deployment/volumes/neo4j-data.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/volumes/neo4j-data.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/volumes/neo4j-data.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
--- kind: PersistentVolumeClaim apiVersion: v1 metadata: name: neo4j-data-claim namespace: human-connection spec: accessModes: - ReadWriteOnce resources: requests: storage: {{ .Values.neo4jStorage }}
18.769231
43
0.643443
7eb81135b591211a4cf787d3bd63e09cd5736884
294
yaml
YAML
deployment/helm/human-connection/templates/volumes/pvc-uploads.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/volumes/pvc-uploads.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/volumes/pvc-uploads.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
kind: PersistentVolumeClaim apiVersion: v1 metadata: name: uploads-claim spec: dataSource: name: uploads-snapshot kind: VolumeSnapshot apiGroup: snapshot.storage.k8s.io accessModes: - ReadWriteOnce resources: requests: storage: {{ .Values.uploadsStorage }}
17.294118
44
0.707483
f30704f89f811a858ce4a6a3ed4b265cf49c6183
2,991
yaml
YAML
deployment/helm/human-connection/values.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/values.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/values.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
# domain is the user-facing domain. domain: develop.human-connection.org # commit is the latest github commit deployed. commit: 889a7cdd24dda04a139b2b77d626e984d6db6781 # dbInitialization runs the database initializations in a post-install hook. dbInitializion: "yarn prod:migrate init" # dbMigrations runs the database migrations in a post-upgrade hook. dbMigrations: "yarn prod:migrate up" # bakendImage is the docker image for the backend deployment backendImage: humanconnection/nitro-backend # maintenanceImage is the docker image for the maintenance deployment maintenanceImage: humanconnection/maintenance # neo4jImage is the docker image for the neo4j deployment neo4jImage: humanconnection/neo4j # webappImage is the docker image for the webapp deployment webappImage: humanconnection/nitro-web # image configures pullPolicy related to the docker images image: # pullPolicy indicates when, if ever, pods pull a new image from docker hub. pullPolicy: IfNotPresent # letsencryptIssuer is used by cert-manager to set up certificates with the given provider. letsencryptIssuer: "letsencrypt-prod" # neo4jConfig changes any default neo4j config/adds it. neo4jConfig: # acceptLicenseAgreement is used to agree to the license agreement for neo4j's enterprise edition. acceptLicenseAgreement: \"yes\" # apocImportFileEnabled enables the import of files to neo4j using the plugin apoc apocImportFileEnabled: \"true\" # dbmsMemoryHeapInitialSize configures initial heap size. By default, it is calculated based on available system resources.(valid units are `k`, `K`, `m`, `M`, `g`, `G`) dbmsMemoryHeapInitialSize: "500M" # dbmsMemoryHeapMaxSize configures maximum heap size. By default it is calculated based on available system resources.(valid units are `k`, `K`, `m`, `M`, `g`, `G`) dbmsMemoryHeapMaxSize: "500M" # dbmsMemoryPagecacheSize configures the amount of memory to use for mapping the store files, in bytes (or 'k', 'm', and 'g') dbmsMemoryPagecacheSize: "490M" # neo4jResourceLimitsMemory configures the memory limits available. neo4jResourceLimitsMemory: "2G" # neo4jResourceLimitsMemory configures the memory available for requests. neo4jResourceRequestsMemory: "1G" # supportEmail is used for letsencrypt certs. supportEmail: "[email protected]" # smtpHost is the host for the mailserver. smtpHost: "mailserver.human-connection.org" # smtpPort is the port to be used for the mailserver. smtpPort: \"25\" # jwtSecret is used to encode/decode a user's JWT for authentication jwtSecret: "Yi8mJjdiNzhCRiZmdi9WZA==" # privateKeyPassphrase is used for activity pub privateKeyPassphrase: "YTdkc2Y3OHNhZGc4N2FkODdzZmFnc2FkZzc4" # mapboxToken is used for the Mapbox API, geolocalization. mapboxToken: "cGsuZXlKMUlqb2lhSFZ0WVc0dFkyOXVibVZqZEdsdmJpSXNJbUVpT2lKamFqbDBjbkJ1Ykdvd2VUVmxNM1Z3WjJsek5UTnVkM1p0SW4wLktaOEtLOWw3MG9talhiRWtrYkhHc1E=" uploadsStorage: "25Gi" neo4jStorage: "5Gi" developmentMailserverDomain: nitro-mailserver.human-connection.org
56.433962
171
0.811434
ae244fdce04d4e34e44a1e79c7b61b263b9c7d2e
1,620
yaml
YAML
deployment/helm/human-connection/templates/deployments/deployment-neo4j.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/deployments/deployment-neo4j.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/deployments/deployment-neo4j.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: apps/v1 kind: Deployment metadata: name: {{ .Release.Name }}-neo4j labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: replicas: 1 strategy: rollingUpdate: maxSurge: 0 maxUnavailable: "100%" selector: matchLabels: human-connection.org/selector: deployment-neo4j template: metadata: name: neo4j annotations: backup.velero.io/backup-volumes: neo4j-data labels: human-connection.org/commit: {{ .Values.commit }} human-connection.org/selector: deployment-neo4j spec: containers: - name: neo4j image: "{{ .Values.neo4jImage }}:{{ .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - containerPort: 7687 - containerPort: 7474 resources: requests: memory: {{ .Values.neo4jResourceRequestsMemory | default "1G" | quote }} limits: memory: {{ .Values.neo4jResourceLimitsMemory | default "1G" | quote }} envFrom: - configMapRef: name: {{ .Release.Name }}-configmap volumeMounts: - mountPath: /data/ name: neo4j-data volumes: - name: neo4j-data persistentVolumeClaim: claimName: neo4j-data-claim restartPolicy: Always terminationGracePeriodSeconds: 30
30.566038
84
0.603704
10a22daf5cd139c2be0163567dc7d54bfb22fd16
225
yaml
YAML
deployment/volumes/volume-snapshots/snapshot.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/volumes/volume-snapshots/snapshot.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/volumes/volume-snapshots/snapshot.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
--- apiVersion: snapshot.storage.k8s.io/v1alpha1 kind: VolumeSnapshot metadata: name: uploads-snapshot namespace: human-connection spec: source: name: uploads-claim kind: PersistentVolumeClaim
20.454545
46
0.702222
00aab9ffdf3922cd5aca3bcf45e1c8805c839b5e
1,642
yaml
YAML
deployment/human-connection/deployment-backend.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/human-connection/deployment-backend.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/human-connection/deployment-backend.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: apps/v1 kind: Deployment metadata: creationTimestamp: null labels: human-connection.org/commit: COMMIT human-connection.org/selector: deployment-human-connection-backend name: backend namespace: human-connection spec: minReadySeconds: 15 progressDeadlineSeconds: 60 replicas: 1 revisionHistoryLimit: 2147483647 selector: matchLabels: human-connection.org/selector: deployment-human-connection-backend strategy: rollingUpdate: maxSurge: 0 maxUnavailable: 100% type: RollingUpdate template: metadata: annotations: backup.velero.io/backup-volumes: uploads creationTimestamp: null labels: human-connection.org/commit: COMMIT human-connection.org/selector: deployment-human-connection-backend name: backend spec: containers: - envFrom: - configMapRef: name: configmap - secretRef: name: human-connection image: humanconnection/nitro-backend:latest imagePullPolicy: Always name: backend ports: - containerPort: 4000 protocol: TCP resources: {} terminationMessagePath: /dev/termination-log terminationMessagePolicy: File volumeMounts: - mountPath: /nitro-backend/public/uploads name: uploads dnsPolicy: ClusterFirst restartPolicy: Always schedulerName: default-scheduler securityContext: {} terminationGracePeriodSeconds: 30 volumes: - name: uploads persistentVolumeClaim: claimName: uploads-claim status: {}
26.918033
74
0.665043
685becb1d606c7f1b1dcc82093f0fb89e53cc270
608
yaml
YAML
deployment/helm/human-connection/templates/services/service-mailserver.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/services/service-mailserver.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/services/service-mailserver.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
{{- if .Values.developmentMailserverDomain }} apiVersion: v1 kind: Service metadata: name: {{ .Release.Name }}-mailserver labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: ports: - name: web port: 80 targetPort: 80 - name: smtp port: 25 targetPort: 25 selector: human-connection.org/selector: deployment-mailserver {{- end}}
26.434783
77
0.652961
b12069f7ed0d7c1ad163ecee612f53856b5f8648
1,014
yaml
YAML
deployment/helm/human-connection/templates/deployments/deployment-maintenance.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/deployments/deployment-maintenance.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/deployments/deployment-maintenance.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: apps/v1 kind: Deployment metadata: name: {{ .Release.Name }}-maintenance labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: selector: matchLabels: human-connection.org/selector: deployment-maintenance template: metadata: labels: human-connection.org/commit: {{ .Values.commit }} human-connection.org/selector: deployment-maintenance name: maintenance spec: containers: - name: maintenance env: - name: HOST value: 0.0.0.0 image: "{{ .Values.maintenanceImage }}:{{ .Chart.AppVersion }}" ports: - containerPort: 80 imagePullPolicy: Always restartPolicy: Always terminationGracePeriodSeconds: 30
30.727273
77
0.616371
af23e69101e036f363f5a84f3ca5341c5a5c8b4a
514
yaml
YAML
deployment/helm/human-connection/templates/services/service-backend.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/services/service-backend.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/services/service-backend.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: v1 kind: Service metadata: name: {{ .Release.Name }}-backend labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: ports: - name: graphql port: 4000 targetPort: 4000 selector: human-connection.org/selector: deployment-backend
28.555556
77
0.651751
525d5a8e82b1250ab8bfee5b6b175397f7bf5be2
120
yaml
YAML
deployment/helm/human-connection/Chart.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/Chart.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/Chart.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: v1 appVersion: "0.3.1" description: A Helm chart for Human Connection name: human-connection version: 0.1.0
20
46
0.775
3f85d3ae8963e7f4cbe719c674b0f8eba8080abc
188
yaml
YAML
deployment/helm/human-connection/templates/volumes/pvc-neo4j-data.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/volumes/pvc-neo4j-data.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/volumes/pvc-neo4j-data.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
apiVersion: v1 kind: PersistentVolumeClaim metadata: name: neo4j-data-claim spec: accessModes: - ReadWriteOnce resources: requests: storage: {{ .Values.neo4jStorage }}
17.090909
41
0.707447
85c587197b83a129a3f18def4e601d23e23a9fe4
1,173
yaml
YAML
deployment/helm/human-connection/templates/deployments/deployment-mailserver.yaml
001101/Human-Connection
59689d5254ffa889e2da787d3f335518de2ed77c
[ "MIT" ]
205
2018-02-18T09:54:52.000Z
2022-03-07T06:17:54.000Z
deployment/helm/human-connection/templates/deployments/deployment-mailserver.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
3,659
2018-02-21T20:32:55.000Z
2022-02-07T13:06:23.000Z
deployment/helm/human-connection/templates/deployments/deployment-mailserver.yaml
HumanConnection/HumanConnection
72a8f3d7f567442ca5e191672abfb47ea1b825a6
[ "MIT" ]
130
2018-03-27T18:58:04.000Z
2021-12-15T12:17:16.000Z
{{- if .Values.developmentMailserverDomain }} apiVersion: apps/v1 kind: Deployment metadata: name: {{ .Release.Name }}-mailserver labels: app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/managed-by: {{ .Release.Service }} app.kubernetes.io/name: human-connection app.kubernetes.io/version: {{ .Chart.AppVersion }} helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: replicas: 1 minReadySeconds: 15 progressDeadlineSeconds: 60 selector: matchLabels: human-connection.org/selector: deployment-mailserver template: metadata: labels: human-connection.org/selector: deployment-mailserver name: mailserver spec: containers: - name: mailserver image: djfarrelly/maildev imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - containerPort: 80 - containerPort: 25 envFrom: - configMapRef: name: {{ .Release.Name }}-configmap - secretRef: name: {{ .Release.Name }}-secrets restartPolicy: Always terminationGracePeriodSeconds: 30 status: {} {{- end}}
28.609756
77
0.633419
ee07740ee827e2370bb5d2501a055228e2956773
289
yml
YAML
codeception.yml
001101/humhub-tracker-issues
4a70983222bc4d9c2d296cc6805057611a5ce5be
[ "MIT" ]
null
null
null
codeception.yml
001101/humhub-tracker-issues
4a70983222bc4d9c2d296cc6805057611a5ce5be
[ "MIT" ]
null
null
null
codeception.yml
001101/humhub-tracker-issues
4a70983222bc4d9c2d296cc6805057611a5ce5be
[ "MIT" ]
1
2019-02-21T21:09:27.000Z
2019-02-21T21:09:27.000Z
namespace: tracker actor: Tester paths: tests: tests log: tests/_output data: tests/_data helpers: tests/_support settings: bootstrap: _bootstrap.php colors: true memory_limit: 1024M modules: config: Yii2: configFile: 'tests/config.php'
18.0625
42
0.653979
d6aaee68beeb8d901869e0a886daab65a11feaef
1,185
yaml
YAML
datasets/noaa-ghe.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/noaa-ghe.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/noaa-ghe.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
1
2021-07-03T21:31:24.000Z
2021-07-03T21:31:24.000Z
Name: NOAA Global Hydro Estimator (GHE) Description: | Global Hydro-Estimator provides a global mosaic imagery of rainfall estimates from multi-geostationary satellites, which currently includes GOES-16, GOES-15, Meteosat-8, Meteosat-11 and Himawari-8. The GHE products include: Instantaneous rain rate, 1 hour, 3 hour, 6 hour, 24 hour and also multi-day rainfall accumulation. Contact: | For questions regarding product content or quality, visit https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html. For any questions regarding data delivery not associated with this platform or any general questions regarding the NOAA Big Data Project, email [email protected]. ManagedBy: "[NOAA](http://www.noaa.gov/)" Documentation: https://www.ospo.noaa.gov/Products/atmosphere/ghe/index.html UpdateFrequency: 15 minute-instantaneous Tags: - aws-pds - meteorological - sustainability - water - weather License: There are no restrictions on the use of this data. Resources: - Description: Project data files ARN: arn:aws:s3:::noaa-ghe-pds Region: us-east-1 Type: S3 Bucket DataAtWork: Tutorials: Tools & Applications: Publications:
32.916667
78
0.756118
36f1e51252b5a6c38eeb723abb0561df966d78fb
744
yaml
YAML
datasets/hpgp-data.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/hpgp-data.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/hpgp-data.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
1
2021-07-03T21:31:24.000Z
2021-07-03T21:31:24.000Z
Name: Human PanGenomics Project Description: This dataset includes sequencing data, assemblies, and analyses for the offspring of ten parent-offspring trios. Documentation: https://github.com/human-pangenomics/hpgp-data Contact: https://github.com/human-pangenomics/hpgp-data/issues UpdateFrequency: Data will be added and updated as technologies improve or new data uses are encountered. Tags: - aws-pds - genomic - life sciences License: Human PanGenomics Project data are licensed under the Creative Commons CC0 1.0 Universal license. Resources: - Description: Human PanGenomics Project ARN: arn:aws:s3:::human-pangenomics Region: us-east-1 Type: S3 Bucket DataAtWork: Tutorials: Tools & Applications: Publications:
39.157895
125
0.783602
686b85b75197426a5a61560d0ff56a2bca919cee
699
yaml
YAML
datasets/giab.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/giab.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/giab.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
1
2021-07-03T21:31:24.000Z
2021-07-03T21:31:24.000Z
Name: Genome in a Bottle on AWS Description: Several reference genomes to enable translation of whole human genome sequencing to clinical practice. Documentation: https://docs.opendata.aws/giab/readme.html Contact: http://genomeinabottle.org/ UpdateFrequency: New data are added as soon as they are available. Tags: - aws-pds - genomic - life sciences License: | There are no restrictions on the use of this data. More information on citation is available [here](https://www.nist.gov/programs-projects/genome-bottle). Resources: - Description: Latest data ARN: arn:aws:s3:::giab Region: us-east-1 Type: S3 Bucket DataAtWork: Tutorials: Tools & Applications: Publications:
34.95
156
0.758226
aa58f3692bdce5967f9500655b49c59c9a8ca56e
3,666
yaml
YAML
datasets/cbers.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/cbers.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
null
null
null
datasets/cbers.yaml
001101/open-data-registry
0823868afe513d5adec4cb2eeae2d9daeae036fb
[ "Apache-2.0" ]
1
2021-07-03T21:31:24.000Z
2021-07-03T21:31:24.000Z
Name: CBERS on AWS Description: | This project creates a S3 repository with imagery acquired by the China-Brazil Earth Resources Satellite (CBERS). The image files are recorded and processed by Instituto Nacional de Pesquisa Espaciais (INPE) and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. The repository contains all CBERS-4 MUX, AWFI, PAN5M and PAN10M scenes acquired since the start of the satellite mission and is daily updated with new scenes. Documentation: https://github.com/fredliporace/cbers-on-aws Contact: https://lists.osgeo.org/mailman/listinfo/cbers-pds ManagedBy: "[AMS Kepler](https://amskepler.com/)" UpdateFrequency: Daily Tags: - aws-pds - earth observation - geospatial - imaging - satellite imagery - sustainability - disaster response License: https://creativecommons.org/licenses/by-sa/3.0/ Resources: - Description: CBERS imagery (COG files, Requester Pays Bucket) ARN: arn:aws:s3:::cbers-pds Region: us-east-1 Type: S3 Bucket RequesterPays: True - Description: CBERS metadata (Quicklooks, metadata) ARN: arn:aws:s3:::cbers-meta-pds Region: us-east-1 Type: S3 Bucket - Description: Notifications for new MUX quicklooks ARN: arn:aws:sns:us-east-1:599544552497:NewCB4MUXQuicklook Region: us-east-1 Type: SNS Topic - Description: Notifications for new AWFI quicklooks ARN: arn:aws:sns:us-east-1:599544552497:NewCB4AWFIQuicklook Region: us-east-1 Type: SNS Topic - Description: Notifications for new PAN10M quicklooks ARN: arn:aws:sns:us-east-1:599544552497:NewCB4PAN10MQuicklook Region: us-east-1 Type: SNS Topic - Description: Notifications for new PAN5M quicklooks ARN: arn:aws:sns:us-east-1:599544552497:NewCB4PAN5MQuicklook Region: us-east-1 Type: SNS Topic DataAtWork: Tutorials: - Title: Keeping a SpatioTemporal Asset Catalog (STAC) Up To Date with SNS/SQS URL: https://aws.amazon.com/blogs/publicsector/keeping-a-spatiotemporal-asset-catalog-stac-up-to-date-with-sns-sqs/ AuthorName: Frederico Liporace Tools & Applications: - Title: STAC V0.6 search endpoint for archive URL: https://stac.amskepler.com/v06/stac/search AuthorName: AMS Kepler AuthorURL: https://github.com/fredliporace/cbers-2-stac - Title: STAC V0.7 search endpoint for archive (beta) URL: https://stac.amskepler.com/v07/stac/search AuthorName: AMS Kepler AuthorURL: https://github.com/fredliporace/cbers-2-stac - Title: Remote Pixel Viewer URL: https://viewer.remotepixel.ca AuthorName: Remote Pixel AuthorURL: http://remotepixel.ca/ - Title: EOS Land Viewer URL: https://eos.com/landviewer/ AuthorName: Earth Observing System AuthorURL: https://eos.com/ - Title: CBERS timelapse GIF generator URL: https://github.com/fredliporace/cbersgif AuthorName: Frederico Liporace AuthorURL: https://github.com/fredliporace - Title: aws-sat-api-py URL: https://github.com/RemotePixel/aws-sat-api-py AuthorName: Remote Pixel AuthorURL: http://remotepixel.ca/ - Title: rio-tiler URL: https://github.com/mapbox/rio-tiler AuthorName: Mapbox AuthorURL: https://www.mapbox.com/ - Title: cbers-tiler URL: https://github.com/mapbox/cbers-tiler AuthorName: Mapbox AuthorURL: https://www.mapbox.com/ - Title: CBERS static STAC catalog served by stac-browser URL: https://cbers.stac.cloud AuthorName: Radiant Earth AuthorURL: https://github.com/radiantearth/stac-browser Publications:
39
121
0.717949
f03b7a0169dce53ccd179336e7e60b0d262d3b83
27,643
yml
YAML
.github/workflows/manage-prs.yml
0015/library-registry
eb5c892f17b494a3a2974d1a597662d868509624
[ "CC0-1.0" ]
2
2021-12-27T14:40:20.000Z
2022-02-15T10:54:24.000Z
.github/workflows/manage-prs.yml
0015/library-registry
eb5c892f17b494a3a2974d1a597662d868509624
[ "CC0-1.0" ]
null
null
null
.github/workflows/manage-prs.yml
0015/library-registry
eb5c892f17b494a3a2974d1a597662d868509624
[ "CC0-1.0" ]
null
null
null
name: Manage PRs env: SUBMISSION_PARSER_VERSION: 1.1.1 # See: https://github.com/arduino/library-manager-submission-parser/releases MAINTAINERS: | # GitHub user names to request reviews from in cases where PRs can't be managed automatically. - per1234 CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT: check-submissions-failed ERROR_MESSAGE_PREFIX: ":x: **ERROR:** " on: # pull_request_target trigger is used instead of pull_request so the token will have the write permissions needed to # comment and merge. # Note that this means the version of the workflow from the PR base ref will be used as opposed to the head ref, as is # the case with pull_request triggered workflows. # See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target pull_request_target: types: - opened - ready_for_review - synchronize issue_comment: types: - created - edited concurrency: group: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} cancel-in-progress: true jobs: diff: if: > ( github.event_name == 'pull_request_target' && github.event.pull_request.draft == false ) || ( github.event_name == 'issue_comment' && github.event.issue.pull_request != '' && github.event.issue.state == 'open' && contains(github.event.comment.body, 'ArduinoBot') ) runs-on: ubuntu-latest outputs: artifact: ${{ steps.configuration.outputs.artifact }} path: ${{ steps.configuration.outputs.path }} filename: ${{ steps.configuration.outputs.filename }} head: ${{ steps.head.outputs.head }} env: # See: https://docs.github.com/en/rest/reference/pulls#custom-media-types-for-pull-requests DIFF_IDENTIFIER: diff JSON_IDENTIFIER: raw+json steps: - name: Set configuration outputs id: configuration run: | echo "::set-output name=artifact::diff" echo "::set-output name=path::${{ runner.temp }}" echo "::set-output name=filename::${{ env.DIFF_IDENTIFIER }}" - name: Comment on comment trigger to provide feedback if: github.event_name == 'issue_comment' uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: # NOTE: "Unexpected input(s) ..." warnings for the arbitrary octokit/request-action inputs are normal and # expected. route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.issue.number }} body: | | Hello! I'm checking your submission again. - name: Get PR data env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | # Two API requests are necessary, one for the PR diff and another for the metadata. # It's necessary to reference both pull_request.number and issue.number because only one of the two are # defined depending on whether the workflow is triggered by PR or comment event. parallel \ ' \ curl \ --fail \ --output "${{ steps.configuration.outputs.path }}/{}" \ --header "Authorization: token $GITHUB_TOKEN" \ --header "Accept: application/vnd.github.v3.{}" \ https://api.github.com/repos/${{ github.repository_owner }}/${{ github.event.repository.name }}/pulls/${{ github.event.pull_request.number }}${{ github.event.issue.number }} ' \ ::: \ ${{ env.DIFF_IDENTIFIER }} \ ${{ env.JSON_IDENTIFIER }} - name: Get head SHA of diff id: head run: echo "::set-output name=head::$(jq -c .head.sha "${{ steps.configuration.outputs.path }}/${{ env.JSON_IDENTIFIER }}")" - name: Upload diff file to workflow artifact uses: actions/upload-artifact@v2 with: path: ${{ steps.configuration.outputs.path }}/${{ steps.configuration.outputs.filename }} name: ${{ steps.configuration.outputs.artifact }} parse: needs: - diff runs-on: ubuntu-latest outputs: type: ${{ steps.parse-request.outputs.type }} error: ${{ steps.parse-request.outputs.error }} arduinoLintLibraryManagerSetting: ${{ steps.parse-request.outputs.arduinoLintLibraryManagerSetting }} submissions: ${{ steps.parse-request.outputs.submissions }} index-entry: ${{ steps.parse-request.outputs.index-entry }} indexer-logs-urls: ${{ steps.parse-request.outputs.indexer-logs-urls }} steps: - name: Checkout local repository uses: actions/checkout@v2 - name: Download submission parser id: download-parser uses: carlosperate/[email protected] with: file-url: https://github.com/arduino/library-registry-submission-parser/releases/download/${{ env.SUBMISSION_PARSER_VERSION }}/parser location: ${{ runner.temp }} - name: Download diff uses: actions/download-artifact@v2 with: path: ${{ needs.diff.outputs.path }} name: ${{ needs.diff.outputs.artifact }} - name: Remove no longer needed artifact uses: geekyeggo/delete-artifact@v1 with: name: ${{ needs.diff.outputs.artifact }} - name: Parse request id: parse-request run: | chmod u+x "${{ steps.download-parser.outputs.file-path }}" REQUEST="$( \ "${{ steps.download-parser.outputs.file-path }}" \ --diffpath="${{ needs.diff.outputs.path }}/${{ needs.diff.outputs.filename }}" \ --repopath="${{ github.workspace }}" \ --listname="repositories.txt" \ )" # Due to limitations of the GitHub Actions workflow system, dedicated outputs must be created for use in # certain workflow fields. echo "::set-output name=type::$(echo "$REQUEST" | jq -r -c '.type')" echo "::set-output name=error::$(echo "$REQUEST" | jq -r -c '.error')" echo "::set-output name=arduinoLintLibraryManagerSetting::$(echo "$REQUEST" | jq -r -c '.arduinoLintLibraryManagerSetting')" echo "::set-output name=submissions::$(echo "$REQUEST" | jq -c '.submissions')" echo "::set-output name=index-entry::$(echo "$REQUEST" | jq -r -c '.indexEntry')" echo "::set-output name=indexer-logs-urls::$(echo "$REQUEST" | jq -r -c '.indexerLogsURLs')" label: needs: - parse runs-on: ubuntu-latest steps: - name: Label PR uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: PUT /repos/{owner}/{repo}/issues/{issue_number}/labels owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} labels: | - "topic: ${{ needs.parse.outputs.type }}" parse-fail: needs: - parse if: needs.parse.outputs.error != '' runs-on: ubuntu-latest steps: - name: Comment on error detected while parsing PR uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | Hi @${{ github.actor }} A problem was found with your pull request: ${{ env.ERROR_MESSAGE_PREFIX }}${{ needs.parse.outputs.error }} Please resolve this error. The checks will automatically run again once that is done. More information: https://github.com/${{ github.repository }}/blob/main/README.md#if-the-problem-is-with-the-pull-request check-submissions: name: Check ${{ matrix.submission.submissionURL }} needs: - parse if: > needs.parse.outputs.type == 'submission' || needs.parse.outputs.type == 'modification' runs-on: ubuntu-latest strategy: fail-fast: false # A matrix job will run for each of the submission URLs matrix: submission: ${{ fromJson(needs.parse.outputs.submissions) }} steps: - name: Set environment variables run: | echo "JSON_REPORT_PATH=${{ runner.temp }}/report.json" >> "$GITHUB_ENV" echo "TEXT_REPORT_PATH=${{ runner.temp }}/report.txt" >> "$GITHUB_ENV" echo "ARDUINO_LINT_INSTALLATION_PATH=${{ runner.temp }}/arduino-lint" >> "$GITHUB_ENV" echo "PASS=true" >> "$GITHUB_ENV" # This variable stores the checks result echo "FAIL_FLAG_PATH=${{ runner.temp }}/.check-submissions-failed" >> "$GITHUB_ENV" # Submission PRs can be handled without maintainer involvement - name: Remove prior review requests uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: DELETE /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} pull_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} reviewers: ${{ env.MAINTAINERS }} - name: Comment on error detected while parsing submission if: matrix.submission.error != '' uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | A problem was found with your submission ${{ matrix.submission.submissionURL }} ${{ env.ERROR_MESSAGE_PREFIX }}${{ matrix.submission.error }} - name: Set checks result to fail if error detected by submission parser if: matrix.submission.error != '' run: echo "PASS=false" >> "$GITHUB_ENV" - name: Install Arduino Lint if: env.PASS == 'true' run: | mkdir --parents "${{ env.ARDUINO_LINT_INSTALLATION_PATH }}" curl \ -fsSL \ https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh \ | \ BINDIR="${{ env.ARDUINO_LINT_INSTALLATION_PATH }}" \ sh # actions/checkout can't be used because it only supports GitHub repos, while libraries may use other Git hosts - name: Clone submission if: env.PASS == 'true' run: | git clone \ --branch ${{ matrix.submission.tag }} \ --depth 1 ${{ matrix.submission.normalizedURL }} \ "${{ matrix.submission.repositoryName }}" - name: Lint submission id: arduino-lint if: env.PASS == 'true' continue-on-error: true # Error on linter rule violations is expected run: | export ARDUINO_LINT_OFFICIAL="${{ matrix.submission.official }}" "${{ env.ARDUINO_LINT_INSTALLATION_PATH }}/arduino-lint" \ --compliance=permissive \ --format=text \ --library-manager=${{ needs.parse.outputs.arduinoLintLibraryManagerSetting }} \ --project-type=library \ --recursive=false \ --report-file="${{ env.JSON_REPORT_PATH }}" \ "${{ matrix.submission.repositoryName }}" > \ "${{ env.TEXT_REPORT_PATH }}" - name: Read Arduino Lint reports id: read-lint-report if: env.PASS == 'true' run: | echo "::set-output name=json-report::$(jq -c . "${{ env.JSON_REPORT_PATH }}")" # In order to use the text format report as a step output, it's necessary to do some character replacements. TEXT_REPORT=$(cat "${{ env.TEXT_REPORT_PATH }}") TEXT_REPORT="${TEXT_REPORT//'%'/'%25'}" TEXT_REPORT="${TEXT_REPORT//$'\n'/'%0A'}" TEXT_REPORT="${TEXT_REPORT//$'\r'/'%0D'}" echo "::set-output name=text-report::$TEXT_REPORT" - name: Comment on Arduino Lint warning if: > env.PASS == 'true' && fromJson(steps.read-lint-report.outputs.json-report).summary.warningCount > 0 && fromJson(steps.read-lint-report.outputs.json-report).summary.errorCount == 0 uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | [Arduino Lint](https://github.com/arduino/arduino-lint) has suggestions for possible improvements to ${{ matrix.submission.submissionURL }}: ``` ${{ steps.read-lint-report.outputs.text-report }} ``` - name: Comment on Arduino Lint error if: > env.PASS == 'true' && fromJson(steps.read-lint-report.outputs.json-report).summary.errorCount > 0 uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | ${{ env.ERROR_MESSAGE_PREFIX }}[Arduino Lint](https://github.com/arduino/arduino-lint) found errors with ${{ matrix.submission.submissionURL }}: ``` ${{ steps.read-lint-report.outputs.text-report }} ``` - name: Set checks result to fail if error detected by Arduino Lint if: > env.PASS == 'true' && steps.arduino-lint.outcome == 'failure' run: echo "PASS=false" >> "$GITHUB_ENV" - name: Create failure flag file if: env.PASS == 'false' run: touch ${{ env.FAIL_FLAG_PATH }} # Arbitrary file to provide content for the flag artifact # The value of a job matrix output is set by whichever job happened to run last, not of use for this application. # So it's necessary to use an alternative means of indicating that at least one submission failed the checks. - name: Upload failure flag artifact if: env.PASS == 'false' uses: actions/upload-artifact@v2 with: if-no-files-found: error path: ${{ env.FAIL_FLAG_PATH }} name: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT }} check-submissions-result: needs: check-submissions runs-on: ubuntu-latest outputs: pass: ${{ steps.failure-flag-exists.outcome == 'failure' }} steps: - name: Check for existence of submission check failure flag artifact id: failure-flag-exists uses: actions/download-artifact@v2 continue-on-error: true with: name: ${{ env.CHECK_SUBMISSIONS_FAIL_FLAG_ARTIFACT }} check-submissions-fail: needs: - check-submissions-result if: needs.check-submissions-result.outputs.pass == 'false' runs-on: ubuntu-latest steps: - name: Comment instructions to fix errors detected during submission checks uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | Thanks for your interest in contributing to the Arduino Library Manager index @${{ github.actor }} Please resolve the error(s) mentioned in the previous comment. After resolving the issue, trigger this check again by doing one of the following: - **Commit the required change to the branch you submitted this pull request from.** - **Comment here, mentioning `@ArduinoBot` in the comment.** :exclamation: **NOTE**: It is not necessary to open a new pull request. :exclamation: More information: https://github.com/${{ github.repository }}/blob/main/README.md#if-the-problem-is-with-the-pull-request merge: needs: - diff - parse - check-submissions-result # Only merge submissions that passed all checks if: > needs.parse.outputs.type == 'submission' && needs.check-submissions-result.outputs.pass == 'true' runs-on: ubuntu-latest outputs: pass: ${{ steps.merge.outcome == 'success' }} status: ${{ steps.merge.outputs.status }} steps: - name: Approve pull request uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/pulls/{pull_number}/reviews owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} pull_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} event: APPROVE - name: Merge pull request id: merge continue-on-error: true # Error in some situations (e.g., merge conflict) is expected uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: PUT /repos/{owner}/{repo}/pulls/{pull_number}/merge owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} pull_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} sha: ${{ needs.diff.outputs.head }} merge_method: squash - name: Checkout index source branch if: steps.merge.outcome == 'success' uses: actions/checkout@v2 with: ref: production - name: Add index source file entry for submissions if: steps.merge.outcome == 'success' run: | INDEX_SOURCE_FILE_PATH="${{ github.workspace }}/registry.txt" git config --global user.email "[email protected]" git config --global user.name "ArduinoBot" echo "${{ needs.parse.outputs.index-entry }}" >> "$INDEX_SOURCE_FILE_PATH" git add --update "$INDEX_SOURCE_FILE_PATH" echo \ -e \ "Add submission # ${{ github.event.pull_request.number }}${{ github.event.issue.number }}\n\n${{ github.event.repository.html_url }}/pull/${{ github.event.pull_request.number }}${{ github.event.issue.number }}" \ | \ git commit \ --file - git push - name: Comment that submission was accepted if: steps.merge.outcome == 'success' uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | Your submission has now been accepted! Thanks for your contribution to the Arduino Library Manager index. The library(s) will be available for installation via Library Manager within a day's time. You can check the logs from the Library Manager indexer for your library(s) here: ${{ needs.parse.outputs.indexer-logs-urls }} merge-fail: needs: - merge # Only run if the PR could not be merged if: needs.merge.outputs.pass == 'false' runs-on: ubuntu-latest steps: - name: Comment on merge fail due to out of sync PR head branch causing downgraded token if: needs.merge.outputs.status == '403' uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | ${{ env.ERROR_MESSAGE_PREFIX }}Your submission meets all requirements. However, the pull request could not be merged. Please follow this guide to sync your fork: https://docs.github.com/en/github/collaborating-with-pull-requests/working-with-forks/syncing-a-fork Once that is done, it will be merged automatically. - name: Comment on merge conflict if: needs.merge.outputs.status == '405' uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | ${{ env.ERROR_MESSAGE_PREFIX }}Your submission meets all requirements. However, the pull request could not be merged. Please follow this guide to resolve a merge conflict: https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github Once that is done, it will be merged automatically. - name: Comment on diff head/PR head mismatch if: needs.merge.outputs.status == '409' uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | It looks like there may have been an update to the pull request. If so, I'll check it again now. - name: Fail on unidentified merge failure if: > needs.merge.outputs.status != '403' && needs.merge.outputs.status != '405' && needs.merge.outputs.status != '409' run: exit 1 # Trigger the `unexpected-fail` job not-submission: needs: - parse # These request types can't be automatically approved. if: > needs.parse.outputs.type != 'submission' && needs.parse.outputs.type != 'invalid' runs-on: ubuntu-latest steps: - name: Comment on required review uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | Hi @${{ github.actor }}. Your pull request has been detected as something other than a Library Manager submission. A maintainer will need to review it before it can be merged. If you intended to submit a library, please check the instructions and update your pull request if necessary: https://github.com/${{ github.repository }}/blob/main/README.md#instructions unexpected-fail: needs: # Run after all other jobs - parse-fail - merge-fail - check-submissions-fail - label - not-submission # Run if any job failed. The workflow is configured so that jobs only fail when there is an unexpected error. if: failure() runs-on: ubuntu-latest steps: - name: Label PR to indicate need for maintenance uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: PUT /repos/{owner}/{repo}/issues/{issue_number}/labels owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} labels: | - "status: maintenance required" - name: Comment on unexpected failure uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} body: | | Hi @${{ github.actor }}. There was an unexpected failure during automated processing of your pull request. This error is unrelated to the content of your pull request. A maintainer has been notified and will investigate as soon as possible. - name: Slack notification of unexpected failure uses: rtCamp/action-slack-notify@v2 env: SLACK_WEBHOOK: ${{ secrets.TEAM_TOOLING_CHANNEL_SLACK_WEBHOOK }} SLACK_MESSAGE: | :warning::warning::warning::warning: WARNING: ${{ github.repository }} ${{ github.workflow }} workflow run had an unexpected failure!!! :warning::warning::warning::warning: SLACK_COLOR: danger MSG_MINIMAL: true request-review: needs: - parse-fail - merge-fail - not-submission - unexpected-fail if: > always() && ( needs.parse-fail.result != 'skipped' || needs.merge-fail.result != 'skipped' || needs.not-submission.result != 'skipped' || needs.unexpected-fail.result != 'skipped' ) runs-on: ubuntu-latest steps: - name: Request pull request review from maintainer if: contains(toJSON(env.MAINTAINERS), github.actor) != true # Don't attempt to request review from PR author. uses: octokit/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: route: POST /repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers owner: ${{ github.repository_owner }} repo: ${{ github.event.repository.name }} pull_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }} reviewers: ${{ env.MAINTAINERS }}
40.83161
224
0.604023
c70f151024e9aa5c189efe84ebfcbf784a2a530a
2,252
yml
YAML
_config.yml
001bufanbin/001bufanbin.github.io
2d30821d01f99435137add3e856c4f86ba9e4036
[ "MIT" ]
null
null
null
_config.yml
001bufanbin/001bufanbin.github.io
2d30821d01f99435137add3e856c4f86ba9e4036
[ "MIT" ]
1
2017-09-28T08:43:14.000Z
2017-09-28T09:43:30.000Z
_config.yml
001bufanbin/001bufanbin.github.io
2d30821d01f99435137add3e856c4f86ba9e4036
[ "MIT" ]
null
null
null
# ---------------- # # Main Configs # # ---------------- # baseurl: url: http://krisfocus.com date_format: "ordinal" title: KrisFocus subtitle: "beyond technology" description: "Kris.bu的个人博客" keywords: krisfocus, kris, kris.bu, bufanbin favicon: /favicon.ico timezone: Asia/Beijing encoding: "utf-8" side_bar_repo_limit: 5 # ---------------- # # Author # # ---------------- # author: kris.bu organization: krisfocus.com organization_url: http://krisfocus.com github_username: 001bufanbin location: Beijing, China email: [email protected] # ---------------- # # Navigation # # ---------------- # navs: - href: / label: 首页 - href: /categories/ label: 分类 - href: /wiki/ label: 维基 - href: /links/ label: 链接 - href: /about/ label: 关于 # ---------------- # # RSS # # ---------------- # subscribe_rss: /feed.xml # ---------------- # # Jekyll # # ---------------- # markdown: kramdown kramdown: input: GFM highlighter: rouge paginate: 8 lsi: false quiet: false excerpt_separator: "\n\n" permalink: /:year/:month/:day/:title/ gems: - jekyll-github-metadata - rouge # - jekyll-html-pipeline - jekyll-paginate - jekyll-sitemap - jekyll-feed - jemoji # - jekyll-mentions collections: wiki: output: true permalink: /wiki/:path/ repository: 001bufanbin/001bufanbin.github.io # ---------------- # # Comments # # ---------------- # # support provider: disqus, gitment, gitalk comments_provider: gitalk # !!!重要!!! 请修改下面这些信息为你自己申请的 # !!!Important!!! Please modify infos below to yours # https://disqus.com disqus: username: mzlogin # https://imsun.net/posts/gitment-introduction/ gitment: owner: 001bufanbin repo: BlogComments oauth: client_id: 6fc51c498892500bd70a client_secret: 971c29d59bdb095a0cf86c26fd005fb1fdea3b08 # https://github.com/gitalk/gitalk#install gitalk: owner: 001bufanbin repo: BlogComments clientID: 6fc51c498892500bd70a clientSecret: 971c29d59bdb095a0cf86c26fd005fb1fdea3b08 # 在使用其它评论组件时可点击显示 Disqus lazy_load_disqus : false # ---------------- # # Analytics # # ---------------- # google: analytics_id: UA-107197661-1
19.754386
63
0.595471
88a2c18ecec1a96f6508f53b0d7a5a143ea01316
1,662
yml
YAML
.github/workflows/release.yml
001wwang/lading
2c62601b63a16a86eff5d56ad40691942ce90956
[ "MIT" ]
null
null
null
.github/workflows/release.yml
001wwang/lading
2c62601b63a16a86eff5d56ad40691942ce90956
[ "MIT" ]
null
null
null
.github/workflows/release.yml
001wwang/lading
2c62601b63a16a86eff5d56ad40691942ce90956
[ "MIT" ]
null
null
null
name: Release on: push: tags: - '*' env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} jobs: publish: name: Publish for ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: name: [linux] include: - os: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable - name: Build run: cargo build --release --locked - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: files: | target/release/file_gen target/release/http_gen target/release/kafka_gen target/release/tcp_gen target/release/http_blackhole target/release/udp_blackhole env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} build-and-push-image: runs-on: ubuntu-latest permissions: contents: read packages: write steps: - name: Log in to the Container registry uses: docker/login-action@v1 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract metadata for Docker uses: docker/metadata-action@v3 id: meta with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image uses: docker/build-push-action@v2 with: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}
22.459459
59
0.561974
e259cdea78475e2857897c05b782270ec7aa91da
1,544
yaml
YAML
sim/worlds/boxes4.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes4.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes4.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
models: - box: name: "Box1" frame_id: "world" position: x: 3.5 y: 0 z: 2.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 5.0 z: 5.0 - box: name: "Box2" frame_id: "world" position: x: 5.5 y: 7.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 6.0 y: 2.0 z: 8.0 - box: name: "Box3" frame_id: "world" position: x: 10 y: -1 z: 2.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 4.0 y: 3.0 z: 5.0 - box: name: "Box4" frame_id: "world" position: x: 13.0 y: 6.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 4.0 z: 8.0 - box: name: "Box5" frame_id: "world" position: x: 6.0 y: -7.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 2.0 z: 8.0 - box: name: "Box6" frame_id: "world" position: x: 7.0 y: 13.5 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 4.0 z: 8.0 - box: name: "Box7" frame_id: "world" position: x: 11.5 y: -7.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 2.0 z: 8.0
13.310345
21
0.358161
f5c72cfb0b796862cfb412879434217874913b9d
2,890
yml
YAML
.travis.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
.travis.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
.travis.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
# Based on https://github.com/felixduvallet/ros-travis-integration # # vim:set ts=2 sw=2 et: dist: xenial sudo: required language: generic compiler: - gcc cache: directories: - $HOME/.cache/pip before_cache: - rm -f $HOME/.cache/pip/log/debug.log cache: - apt env: global: - ROS_CI_DESKTOP="$(lsb_release -cs)" - CI_SOURCE_PATH=$(pwd) - ROS_DISTRO=kinetic before_install: - sudo sh -c "echo \"deb http://packages.ros.org/ros/ubuntu $ROS_CI_DESKTOP main\" > /etc/apt/sources.list.d/ros-latest.list" - sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 421C365BD9FF1F717815A3895523BAEEB01FA116 - sudo apt-get update -qq - sudo apt-get install -y build-essential cmake git curl g++ wget - sudo apt-get install -y libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev - sudo apt-get install -y python-rosinstall python-rosinstall-generator python-wstool python-catkin-tools # Install ROS Kinetic - sudo apt-get install -y ros-$ROS_DISTRO-ros-base # Install MavLink and Mavros - sudo apt-get install -y ros-$ROS_DISTRO-mavlink ros-$ROS_DISTRO-mavros ros-$ROS_DISTRO-mavros-extras # Source environment - source /opt/ros/$ROS_DISTRO/setup.bash # Prepare rosdep - sudo rosdep init - rosdep update install: # Create catkin workspace - mkdir -p ~/catkin_ws - cd ~/catkin_ws - catkin config --init --mkdirs # Pull source depends - cd src - wstool init # Link the repository we are testing to the new workspace - ln -s $CI_SOURCE_PATH . # Install dependencies using rosdep - cd ~/catkin_ws - rosdep install --from-paths src --ignore-src --rosdistro $ROS_DISTRO -q -y # Install GeographicLib datasets - sudo -H mkdir -p /usr/share/geographiclib - wget https://raw.githubusercontent.com/mavlink/mavros/master/mavros/scripts/install_geographiclib_datasets.sh - chmod +x install_geographiclib_datasets.sh - sudo -H ./install_geographiclib_datasets.sh # Install OpenCV - curl -sL https://github.com/opencv/opencv/archive/2.4.13.6.zip > opencv.zip - unzip opencv.zip - cd opencv-2.4.13.6 - mkdir build - cd build - cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_RULE_MESSAGES=OFF -D WITH_TBB=ON -D BUILD_NEW_PYTHON_SUPPORT=OFF -D WITH_V4L=ON -D INSTALL_C_EXAMPLES=OFF -D INSTALL_PYTHON_EXAMPLES=OFF -D BUILD_EXAMPLES=OFF -D WITH_QT=ON -D WITH_OPENGL=ON .. - make -j"$(nproc)" - sudo make install - sudo sh -c 'echo "/usr/local/lib" > /etc/ld.so.conf.d/opencv.conf' - sudo ldconfig - catkin init before_script: # Source environment - source /opt/ros/$ROS_DISTRO/setup.bash script: - cd ~/catkin_ws - source /opt/ros/$ROS_DISTRO/setup.bash - catkin build # Check for clang format - cd src/avoidance - git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" - ./check_code_format.sh
34.819277
274
0.722491
3ae77b736d8e6aba561cdb54b0702dad0ee7f01e
872
yml
YAML
docker/local_planner/local-planner-prod/local-planner-prod-release/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/local_planner/local-planner-prod/local-planner-prod-release/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/local_planner/local-planner-prod/local-planner-prod-release/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '2.1' services: mavros-avoidance: extends: file: ../../../components/components.yml service: mavros-avoidance command: fcu_url:=\"tcp://172.17.0.1:5760\" use_sim_time:="false" realsense-node: extends: file: ../../../components/components.yml service: realsense-node depends_on: - mavros-avoidance privileged: true environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 local-planner-node: extends: file: ../../../components/components.yml service: local-planner-node depends_on: - mavros-avoidance - realsense-node environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 command: local_avoidance.launch use_sim_time:="false"
31.142857
77
0.565367
0e88ca92efbdd12636ac2a05566317b2304b9317
1,075
yaml
YAML
sim/worlds/boxes5.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes5.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes5.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
models: - box: name: "Box1" frame_id: "world" position: x: 20 y: 0 z: 1.25 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 10.0 y: 20.0 z: 2.5 - box: name: "Box2" frame_id: "world" position: x: 27 y: 0 z: 2 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 4 y: 20.0 z: 4 - box: name: "Box3" frame_id: "world" position: x: 33 y: 0 z: 0.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 8 y: 20.0 z: 1 - box: name: "Box4" frame_id: "world" position: x: 48 y: 0 z: 0.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 8 y: 20.0 z: 1 - box: name: "Box5" frame_id: "world" position: x: 18 y: 0 z: 4.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2 y: 3 z: 4
12.951807
21
0.36
fc916881c1f83e34d865044a71ed00f5f0a24b3f
921
yml
YAML
docker/global_planner/global-planner-dev/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/global_planner/global-planner-dev/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/global_planner/global-planner-dev/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '2.1' services: mavros-avoidance: extends: file: ../../components/components.yml service: mavros-avoidance command: fcu_url:="udp://:14540@sitl-avoidance-server:14557" use_sim_time:="true" sitl-avoidance-server: extends: file: ../../components/components.yml service: sitl-avoidance-server depends_on: - mavros-avoidance sitl-avoidance-gui: extends: file: ../../components/components.yml service: sitl-avoidance-gui depends_on: - sitl-avoidance-server command: /root/resource/global_planner.rviz global-planner-node: extends: file: ../../components/components.yml service: global-planner-node depends_on: - sitl-avoidance-server command: global_avoidance.launch use_sim_time:="true"
31.758621
89
0.588491
5cb42acfd4db25e00770c87e6c8ef6c5741dd3f7
445
yaml
YAML
sim/worlds/boxes2.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes2.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes2.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
models: - box: name: "Box" frame_id: "world" position: x: 1.5 y: 0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 1.0 y: 5.0 z: 8.0 - box: name: "Box2" frame_id: "world" position: x: 3.5 y: 6.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 4.0 y: 2.0 z: 8.0
12.714286
21
0.359551
1bfe659e6d0c999b200977811db7cfebf861ecfc
1,321
yaml
YAML
sim/worlds/boxes3.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes3.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes3.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
models: - box: name: "Box1" frame_id: "world" position: x: 2.5 y: 0 z: 2.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 5.0 z: 5.0 - box: name: "Box2" frame_id: "world" position: x: 3.5 y: 7.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 4.0 y: 2.0 z: 8.0 - box: name: "Box3" frame_id: "world" position: x: 6.5 y: -2 z: 2.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 2.0 z: 5.0 - box: name: "Box4" frame_id: "world" position: x: 9.0 y: 4.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 2.0 z: 8.0 - box: name: "Box5" frame_id: "world" position: x: 9.0 y: -8.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 2.0 z: 8.0 - box: name: "Box6" frame_id: "world" position: x: 9.0 y: 8.0 z: 4.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 2.0 y: 2.0 z: 8.0
13.343434
21
0.357305
5f442b027340488cc50e17f43e344a4ca2cdd39c
965
yml
YAML
docker/global_planner/global-planner-prod/global-planner-prod-debug/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/global_planner/global-planner-prod/global-planner-prod-debug/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/global_planner/global-planner-prod/global-planner-prod-debug/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '2.1' services: mavros-avoidance: extends: file: ../../../components/components.yml service: mavros-avoidance command: "fcu_url:=\"tcp://172.17.0.1:5760\"" realsense-node: extends: file: ../../../components/components.yml service: realsense-node depends_on: - mavros-avoidance privileged: true environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 global-planner-node: extends: file: ../../../components/components.yml service: global-planner-node depends_on: - mavros-avoidance - realsense-node environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 command: global_avoidance.launch use_sim_time:=false alpinevpn: extends: file: ../../../components/components.yml service: alpinevpn
30.15625
60
0.557513
43a73b3943d54bf08e13627a0f0140197a45b24b
228
yaml
YAML
sim/worlds/boxes1.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes1.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes1.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
models: - box: name: "Box" frame_id: "world" position: x: 1.5 y: 0 z: 2.5 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 scale: x: 1.0 y: 20.0 z: 5.0
10.857143
21
0.364035
36b3f45968faf298f7c83d9b2c6104656b09922d
1,450
yml
YAML
docker/components/components.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/components/components.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/components/components.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '2.1' services: mavros: build: ./mavros/ ports: - "11311:11311" mavros-avoidance: build: context: ../.. dockerfile: docker/components/mavros-avoidance/Dockerfile command: fcu_url:="udp://:14540@sitl-avoidance-server:14557" ports: - "11311:11311" sitl-avoidance-server: build: context: ../.. dockerfile: docker/components/sitl-server/Dockerfile ports: - "14556:14556/udp" - "14557:14557/udp" - "11345:11345" privileged: true environment: - DISPLAY=${DISPLAY} volumes: - /tmp/.X11-unix:/tmp/.X11-unix:ro sitl-avoidance-gui: build: context: ../.. dockerfile: docker/components/sitl-gui/Dockerfile privileged: true environment: - DISPLAY=${DISPLAY} volumes: - /tmp/.X11-unix:/tmp/.X11-unix:ro local-planner-node: build: context: ../.. dockerfile: docker/components/local-planner-node/Dockerfile global-planner-node: build: context: ../.. dockerfile: docker/components/global-planner-node/Dockerfile realsense-node: build: ./realsense-node/ alpinevpn: build: ./alpinevpn/ ports: - "1194:1194/udp" privileged: true
28.431373
72
0.523448
c522514271d0472371b565c0618303ebd9998f9b
1,030
yml
YAML
docker/local_planner/local-planner-prod/local-planner-prod-debug/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/local_planner/local-planner-prod/local-planner-prod-debug/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/local_planner/local-planner-prod/local-planner-prod-debug/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '2.1' services: mavros-avoidance: extends: file: ../../../components/components.yml service: mavros-avoidance command: fcu_url:="tcp://172.17.0.1:5760" use_sim_time:="false" realsense-node: extends: file: ../../../components/components.yml service: realsense-node depends_on: - mavros-avoidance privileged: true environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 local-planner-node: extends: file: ../../../components/components.yml service: local-planner-node depends_on: - mavros-avoidance - realsense-node environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 volumes: - /logs:/root/.ros command: local_avoidance.launch use_sim_time:="false" alpinevpn: extends: file: ../../../components/components.yml service: alpinevpn
30.294118
71
0.553398
a6d547a9f1ad6cbbc17db4c28dcbb9233c69a99e
285
yml
YAML
docker/demo/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/demo/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/demo/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '3' services: ubuntu-avoidance: build: context: ../../ dockerfile: docker/demo/ubuntu/Dockerfile privileged: true environment: - DISPLAY=${DISPLAY} volumes: - /tmp/.X11-unix:/tmp/.X11-unix:ro
23.75
53
0.515789
4d7aedc818cbd4094ccef0b0f96e4dab767e81fb
230
yaml
YAML
sim/worlds/boxes6.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes6.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
sim/worlds/boxes6.yaml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
models: - box: name: "Box1" frame_id: "world" position: x: 20 y: 0 z: 1.25 orientation: x: 0.0 y: 0.25 z: 0.0 w: 1.0 scale: x: 10.0 y: 10.0 z: 2.5
11.5
21
0.378261
f133f5b74e351b6ac3d3179fe86e4f4cd08bc6c1
851
yml
YAML
docker/global_planner/global-planner-prod/global-planner-prod-release/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/global_planner/global-planner-prod/global-planner-prod-release/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/global_planner/global-planner-prod/global-planner-prod-release/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '2.1' services: mavros-avoidance: extends: file: ../../../components/components.yml service: mavros-avoidance command: "fcu_url:=\"tcp://172.17.0.1:5760\"" realsense-node: extends: file: ../../../components/components.yml service: realsense-node depends_on: - mavros-avoidance privileged: true environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 global-planner-node: extends: file: ../../../components/components.yml service: global-planner-node depends_on: - mavros-avoidance - realsense-node environment: - ROS_MASTER_URI=http://mavros-avoidance:11311 command: global_avoidance.launch use_sim_time:="false"
30.392857
62
0.562867
81a0c71f8244deb315d21292b07de23ea5101727
8,303
rviz
YAML
global_planner/resource/global_planner.rviz
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
global_planner/resource/global_planner.rviz
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
global_planner/resource/global_planner.rviz
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
Panels: - Class: rviz/Displays Help Height: 78 Name: Displays Property Tree Widget: Expanded: - /Global Options1 - /Status1 Splitter Ratio: 0.5 Tree Height: 686 - Class: rviz/Selection Name: Selection - Class: rviz/Tool Properties Expanded: - /2D Pose Estimate1 - /2D Nav Goal1 - /Publish Point1 Name: Tool Properties Splitter Ratio: 0.588679016 - Class: rviz/Views Expanded: - /Current View1 Name: Views Splitter Ratio: 0.5 - Class: rviz/Time Experimental: false Name: Time SyncMode: 0 SyncSource: "" Visualization Manager: Class: "" Displays: - Alpha: 0.5 Cell Size: 1 Class: rviz/Grid Color: 160; 160; 164 Enabled: true Line Style: Line Width: 0.0299999993 Value: Lines Name: Grid Normal Cell Count: 0 Offset: X: 0 Y: 0 Z: 0 Plane: XY Plane Cell Count: 100 Reference Frame: <Fixed Frame> Value: true - Alpha: 0.699999988 Class: rviz/Map Color Scheme: map Draw Behind: false Enabled: true Name: Map Topic: /projected_map Unreliable: false Value: true - Class: rviz/MarkerArray Enabled: true Marker Topic: /occupied_cells_vis_array Name: MarkerArray Namespaces: map: true Queue Size: 100 Value: true - Alpha: 1 Axes Length: 1 Axes Radius: 0.100000001 Class: rviz/Pose Color: 255; 25; 0 Enabled: true Head Length: 0.300000012 Head Radius: 0.100000001 Name: Pose Shaft Length: 1 Shaft Radius: 0.0500000007 Shape: Arrow Topic: /mavros/local_position/pose Unreliable: false Value: true - Alpha: 1 Axes Length: 1 Axes Radius: 0.100000001 Class: rviz/Pose Color: 255; 25; 0 Enabled: true Head Length: 0.300000012 Head Radius: 0.100000001 Name: Pose Shaft Length: 0.200000003 Shaft Radius: 0.0500000007 Shape: Arrow Topic: /current_setpoint Unreliable: false Value: true - Alpha: 1 Class: rviz/PointStamped Color: 204; 41; 204 Enabled: true History Length: 1 Name: PointStamped Radius: 0.200000003 Topic: /global_goal Unreliable: false Value: true - Alpha: 1 Class: rviz/PointStamped Color: 204; 41; 204 Enabled: true History Length: 1 Name: PointStamped Radius: 0.200000003 Topic: /global_temp_goal Unreliable: false Value: true - Alpha: 1 Buffer Length: 1 Class: rviz/Path Color: 255; 0; 255 Enabled: true Line Style: Lines Line Width: 0.0299999993 Name: Path Offset: X: 0 Y: 0 Z: 0 Topic: /smooth_path Unreliable: false Value: true - Alpha: 1 Buffer Length: 1 Class: rviz/Path Color: 255; 0; 0 Enabled: true Line Style: Lines Line Width: 0.0299999993 Name: Path Offset: X: 0 Y: 0 Z: 0 Topic: /actual_path Unreliable: false Value: true - Alpha: 1 Buffer Length: 1 Class: rviz/Path Color: 25; 255; 0 Enabled: true Line Style: Billboards Line Width: 0.0299999993 Name: Path Offset: X: 0 Y: 0 Z: 0 Topic: /three_point_path Unreliable: false Value: true - Class: rviz/MarkerArray Enabled: false Marker Topic: /explored_cells Name: MarkerArray Namespaces: {} Queue Size: 100 Value: false - Alpha: 1 Autocompute Intensity Bounds: true Autocompute Value Bounds: Max Value: 10 Min Value: -10 Value: true Axis: Z Channel Name: intensity Class: rviz/PointCloud2 Color: 255; 255; 255 Color Transformer: RGB8 Decay Time: 0 Enabled: false Invert Rainbow: false Max Color: 255; 255; 255 Max Intensity: 4096 Min Color: 0; 0; 0 Min Intensity: 0 Name: PointCloud2 Position Transformer: XYZ Queue Size: 10 Selectable: true Size (Pixels): 3 Size (m): 0.100000001 Style: Flat Squares Topic: /camera/depth/points Unreliable: false Use Fixed Frame: true Use rainbow: true Value: false Enabled: true Global Options: Background Color: 48; 48; 48 Fixed Frame: world Frame Rate: 30 Name: root Tools: - Class: rviz/Interact Hide Inactive Objects: true - Class: rviz/MoveCamera - Class: rviz/Select - Class: rviz/FocusCamera - Class: rviz/Measure - Class: rviz/SetInitialPose Topic: /initialpose - Class: rviz/SetGoal Topic: /move_base_simple/goal - Class: rviz/PublishPoint Single click: true Topic: /clicked_point Value: true Views: Current: Class: rviz/ThirdPersonFollower Distance: 7.83588791 Enable Stereo Rendering: Stereo Eye Separation: 0.0599999987 Stereo Focal Distance: 1 Swap Stereo Eyes: false Value: false Focal Point: X: 0.137426466 Y: -0.667538047 Z: 4.76837158e-07 Name: Current View Near Clip Distance: 0.00999999978 Pitch: 0.289798737 Target Frame: camera_link Value: ThirdPersonFollower (rviz) Yaw: 4.47540188 Saved: - Class: rviz/ThirdPersonFollower Distance: 10 Enable Stereo Rendering: Stereo Eye Separation: 0.0599999987 Stereo Focal Distance: 1 Swap Stereo Eyes: false Value: false Focal Point: X: 0 Y: 0 Z: 0 Name: ThirdPersonFollower Near Clip Distance: 0.00999999978 Pitch: 0.220398411 Target Frame: camera_link Value: ThirdPersonFollower (rviz) Yaw: 4.69858599 - Class: rviz/Orbit Distance: 49.4510117 Enable Stereo Rendering: Stereo Eye Separation: 0.0599999987 Stereo Focal Distance: 1 Swap Stereo Eyes: false Value: false Focal Point: X: 5.36913252 Y: -1.03582704 Z: -0.00413707877 Name: Orbit Near Clip Distance: 0.00999999978 Pitch: 1.56979632 Target Frame: world Value: Orbit (rviz) Yaw: 3.12039614 Window Geometry: Displays: collapsed: false Height: 1020 Hide Left Dock: false Hide Right Dock: true QMainWindow State: 000000ff00000000fd0000000400000000000001ad0000034ffc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006b00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c00610079007301000000340000034f000000ef00fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c0000026100000001000001320000034ffc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a0056006900650077007300000000340000034f000000cd00fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000007800000004afc0100000002fb0000000800540069006d00650100000000000007800000043900fffffffb0000000800540069006d00650100000000000004500000000000000000000005ca0000034f00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 Selection: collapsed: false Time: collapsed: false Tool Properties: collapsed: false Views: collapsed: true Width: 1920 X: 1920 Y: 1098
28.241497
1,467
0.651572
c4f9e5a20cb167538b6c03a7110655412378d4dd
917
yml
YAML
docker/local_planner/local-planner-dev/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
1
2020-09-04T12:35:16.000Z
2020-09-04T12:35:16.000Z
docker/local_planner/local-planner-dev/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
docker/local_planner/local-planner-dev/docker-compose.yml
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
version: '2.1' services: mavros-avoidance: extends: file: ../../components/components.yml service: mavros-avoidance command: fcu_url:="udp://:14540@sitl-avoidance-server:14557" use_sim_time:="true" sitl-avoidance-server: extends: file: ../../components/components.yml service: sitl-avoidance-server depends_on: - mavros-avoidance sitl-avoidance-gui: extends: file: ../../components/components.yml service: sitl-avoidance-gui depends_on: - sitl-avoidance-server command: /root/resource/local_planner.rviz local-planner-node: extends: file: ../../components/components.yml service: local-planner-node depends_on: - sitl-avoidance-server command: local_avoidance.launch use_sim_time:="true"
31.62069
89
0.586696
5aeffcd5b5b90a1acf392f7e9c18468da19c5174
13,326
rviz
YAML
local_planner/resource/local_planner.rviz
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
local_planner/resource/local_planner.rviz
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
local_planner/resource/local_planner.rviz
001zwzwzw/dagar-avoidance
5ae6ba7237b5327ca2e78ebbf1ee63e1bcbf8217
[ "BSD-3-Clause" ]
null
null
null
Panels: - Class: rviz/Displays Help Height: 0 Name: Displays Property Tree Widget: Expanded: ~ Splitter Ratio: 0.5 Tree Height: 381 - Class: rviz/Selection Name: Selection - Class: rviz/Tool Properties Expanded: - /2D Nav Goal1 - /Publish Point1 Name: Tool Properties Splitter Ratio: 0.588679016 - Class: rviz/Views Expanded: - /Current View1 Name: Views Splitter Ratio: 0.5 - Class: rviz/Time Experimental: false Name: Time SyncMode: 0 SyncSource: Local pointcloud Visualization Manager: Class: "" Displays: - Class: rviz/MarkerArray Enabled: true Marker Topic: /rviz_world_loader/marker Name: World Namespaces: oaktree1: true oaktree2: true oaktree3: true oaktree4: true oaktree5: true oaktree6: true oaktree7: true oaktree8: true pinetree1: true pinetree2: true pinetree3: true pinetree4: true Queue Size: 100 Value: true - Alpha: 0.5 Cell Size: 1 Class: rviz/Grid Color: 160; 160; 164 Enabled: true Line Style: Line Width: 0.0299999993 Value: Lines Name: Grid Normal Cell Count: 0 Offset: X: 0 Y: 0 Z: 0 Plane: XY Plane Cell Count: 36 Reference Frame: <Fixed Frame> Value: true - Alpha: 1 Axes Length: 1 Axes Radius: 0.100000001 Class: rviz/Pose Color: 255; 25; 0 Enabled: true Head Length: 0.300000012 Head Radius: 0.100000001 Name: Vehicle pose Shaft Length: 1 Shaft Radius: 0.0500000007 Shape: Arrow Topic: /mavros/local_position/pose Unreliable: false Value: true - Class: rviz/Marker Enabled: true Marker Topic: /current_setpoint Name: currenSetpoint Namespaces: "": true Queue Size: 100 Value: true - Class: rviz/MarkerArray Enabled: true Marker Topic: /selected_marker Name: Selected direction Namespaces: {} Queue Size: 100 Value: true - Class: rviz/MarkerArray Enabled: true Marker Topic: /extended_marker Name: ExtendedMarker Namespaces: {} Queue Size: 100 Value: true - Class: rviz/MarkerArray Enabled: true Marker Topic: /rejected_marker Name: Detected object Namespaces: {} Queue Size: 100 Value: true - Class: rviz/MarkerArray Enabled: true Marker Topic: /blocked_marker Name: Blocked direction Namespaces: {} Queue Size: 100 Value: true - Class: rviz/MarkerArray Enabled: false Marker Topic: /candidates_marker Name: Possible direction Namespaces: {} Queue Size: 100 Value: false - Class: rviz/MarkerArray Enabled: true Marker Topic: /goal_position Name: MarkerArray Namespaces: "": true Queue Size: 100 Value: true - Alpha: 1 Buffer Length: 1 Class: rviz/Path Color: 255; 0; 0 Enabled: true Head Diameter: 0.300000012 Head Length: 0.200000003 Length: 0.300000012 Line Style: Lines Line Width: 0.0299999993 Name: Old trajectory Offset: X: 0 Y: 0 Z: 0 Pose Color: 255; 85; 255 Pose Style: None Radius: 0.0299999993 Shaft Diameter: 0.100000001 Shaft Length: 0.100000001 Topic: /path_actual Unreliable: false Value: true - Alpha: 1 Buffer Length: 1 Class: rviz/Path Color: 25; 255; 0 Enabled: true Head Diameter: 0.300000012 Head Length: 0.200000003 Length: 0.300000012 Line Style: Billboards Line Width: 0.0299999993 Name: Path Offset: X: 0 Y: 0 Z: 0 Pose Color: 255; 85; 255 Pose Style: None Radius: 0.0299999993 Shaft Diameter: 0.100000001 Shaft Length: 0.100000001 Topic: /waypoint Unreliable: false Value: true - Class: rviz/Axes Enabled: true Length: 1 Name: fcu Radius: 0.100000001 Reference Frame: fcu Value: true - Class: rviz/Axes Enabled: true Length: 1 Name: local_origin Radius: 0.100000001 Reference Frame: local_origin Value: true - Alpha: 1 Autocompute Intensity Bounds: true Autocompute Value Bounds: Max Value: 10 Min Value: -10 Value: true Axis: Z Channel Name: intensity Class: rviz/PointCloud2 Color: 255; 255; 255 Color Transformer: Intensity Decay Time: 0 Enabled: true Invert Rainbow: false Max Color: 255; 255; 255 Max Intensity: 4096 Min Color: 0; 0; 0 Min Intensity: 0 Name: Local pointcloud Position Transformer: XYZ Queue Size: 10 Selectable: true Size (Pixels): 3 Size (m): 0.100000001 Style: Flat Squares Topic: /local_pointcloud Unreliable: false Use Fixed Frame: true Use rainbow: true Value: true - Alpha: 1 Autocompute Intensity Bounds: true Autocompute Value Bounds: Max Value: 10 Min Value: -10 Value: true Axis: Z Channel Name: intensity Class: rviz/PointCloud2 Color: 255; 255; 255 Color Transformer: Intensity Decay Time: 0 Enabled: true Invert Rainbow: true Max Color: 255; 0; 255 Max Intensity: 4096 Min Color: 255; 0; 255 Min Intensity: 0 Name: Reprojected_points Position Transformer: XYZ Queue Size: 10 Selectable: true Size (Pixels): 5 Size (m): 0.100000001 Style: Points Topic: /reprojected_points Unreliable: false Use Fixed Frame: true Use rainbow: true Value: true - Alpha: 1 Autocompute Intensity Bounds: true Autocompute Value Bounds: Max Value: 10 Min Value: -10 Value: true Axis: Z Channel Name: intensity Class: rviz/PointCloud2 Color: 255; 255; 255 Color Transformer: "" Decay Time: 0 Enabled: false Invert Rainbow: false Max Color: 255; 255; 255 Max Intensity: 4096 Min Color: 0; 0; 0 Min Intensity: 0 Name: GroundCloud Position Transformer: "" Queue Size: 10 Selectable: true Size (Pixels): 3 Size (m): 0.00999999978 Style: Flat Squares Topic: /ground_pointcloud Unreliable: false Use Fixed Frame: true Use rainbow: true Value: false - Class: rviz/Marker Enabled: false Marker Topic: /bounding_box Name: Box Namespaces: {} Queue Size: 100 Value: false - Class: rviz/Marker Enabled: false Marker Topic: /ground_box Name: GroundBox Namespaces: {} Queue Size: 100 Value: false - Class: rviz/MarkerArray Enabled: false Marker Topic: /height_map Name: HeightMap Namespaces: {} Queue Size: 100 Value: false - Class: rviz/Image Enabled: false Image Topic: /camera/depth/image_raw Max Value: 1 Median window: 5 Min Value: 0 Name: Image Normalize Range: true Queue Size: 2 Transport Hint: raw Unreliable: false Value: false - Class: rviz/Image Enabled: true Image Topic: /camera/rgb/image_raw Max Value: 1 Median window: 5 Min Value: 0 Name: Image Normalize Range: true Queue Size: 2 Transport Hint: raw Unreliable: false Value: true - Class: rviz/Marker Enabled: true Marker Topic: /complete_tree Name: Tree Namespaces: "": true Queue Size: 100 Value: true - Class: rviz/Marker Enabled: true Marker Topic: /initial_height Name: InitialHeight Namespaces: "": true Queue Size: 100 Value: true - Class: rviz/Marker Enabled: true Marker Topic: /take_off_pose Name: TakeOff Namespaces: "": true Queue Size: 100 Value: true - Class: rviz/Marker Enabled: true Marker Topic: /original_waypoint Name: WpOriginal Namespaces: "": true Queue Size: 100 Value: true - Class: rviz/Marker Enabled: true Marker Topic: /smoothed_waypoint Name: WpSmoothed Namespaces: "": true Queue Size: 100 Value: true - Class: rviz/Marker Enabled: true Marker Topic: /adapted_waypoint Name: WpAdapted Namespaces: "": true Queue Size: 100 Value: true - Class: rviz/Marker Enabled: true Marker Topic: /tree_path Name: TreePath Namespaces: "": true Queue Size: 100 Value: true Enabled: true Global Options: Background Color: 48; 48; 48 Fixed Frame: world Frame Rate: 30 Name: root Tools: - Class: rviz/Interact Hide Inactive Objects: true - Class: rviz/MoveCamera - Class: rviz/Select - Class: rviz/FocusCamera - Class: rviz/Measure - Class: rviz/SetGoal Topic: /move_base_simple/goal - Class: rviz/PublishPoint Single click: true Topic: /clicked_point Value: true Views: Current: Class: rviz/ThirdPersonFollower Distance: 10.3801394 Enable Stereo Rendering: Stereo Eye Separation: 0.0599999987 Stereo Focal Distance: 1 Swap Stereo Eyes: false Value: false Focal Point: X: 0.137426466 Y: -0.667538047 Z: 4.76837158e-07 Focal Shape Fixed Size: true Focal Shape Size: 0.0500000007 Invert Z Axis: false Name: Current View Near Clip Distance: 0.00999999978 Pitch: 0.199797437 Target Frame: camera_link Value: ThirdPersonFollower (rviz) Yaw: 4.46043348 Saved: - Class: rviz/ThirdPersonFollower Distance: 10 Enable Stereo Rendering: Stereo Eye Separation: 0.0599999987 Stereo Focal Distance: 1 Swap Stereo Eyes: false Value: false Focal Point: X: 0 Y: 0 Z: 0 Focal Shape Fixed Size: true Focal Shape Size: 0.0500000007 Invert Z Axis: false Name: ThirdPersonFollower Near Clip Distance: 0.00999999978 Pitch: 0.220398411 Target Frame: camera_link Value: ThirdPersonFollower (rviz) Yaw: 4.69858599 - Class: rviz/Orbit Distance: 49.4510117 Enable Stereo Rendering: Stereo Eye Separation: 0.0599999987 Stereo Focal Distance: 1 Swap Stereo Eyes: false Value: false Focal Point: X: 5.36913252 Y: -1.03582704 Z: -0.00413707877 Focal Shape Fixed Size: true Focal Shape Size: 0.0500000007 Invert Z Axis: false Name: Orbit Near Clip Distance: 0.00999999978 Pitch: 1.56979632 Target Frame: world Value: Orbit (rviz) Yaw: 3.12039614 Window Geometry: Displays: collapsed: false Height: 1040 Hide Left Dock: false Hide Right Dock: true Image: collapsed: false QMainWindow State: 000000ff00000000fd00000004000000000000016a0000037afc020000000afb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed0000074400000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c0061007900730100000028000001be000000dd00fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261fb0000000a0049006d00610067006501000001ec000001b60000001600fffffffb0000000a0049006d00610067006500000002ce000000c00000001600ffffff00000001000001320000034ffc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a0056006900650077007300000000340000034f000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000007600000004afc0100000002fb0000000800540069006d00650100000000000007600000030000fffffffb0000000800540069006d00650100000000000004500000000000000000000005f00000037a00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 Selection: collapsed: false Time: collapsed: false Tool Properties: collapsed: false Views: collapsed: true Width: 1888 X: 65 Y: 1092
26.975709
1,595
0.629221
ff29beb6d62095ea6dbe751e64722a11c25ddba2
519
yml
YAML
_data/menus.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
_data/menus.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
_data/menus.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
main: - name: "Home" url: "/" weight: 1 - name: "Wybór platformy" url: "/platform/" weight: 4 - name: "Team" url: "/team/" weight: 10 - name: "Bibliografia" url: "/bibliografia/" weight: 20 - name: "Contact" url: "/contact/" weight: 12 - name: "Założenia" url: "/goals/" weight: 2 - name: "Przypadki użycia" url: "/usecase/" weight: 3 footer: - name: "Home" url: "/" weight: 1 - name: "Contact" url: "/contact/" weight: 2
15.727273
28
0.510597
1a1d67e5963df45922794e63f70594f546ad2a24
1,407
yml
YAML
_config.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
_config.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
_config.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
baseurl: '/00204894pw' exclude: ['README.md'] permalink: pretty title: 'PW 2020 - Projekt Mechatronika - Układ automatyki niskoenergetycznej' google_analytics_id: null homepage: show_call_box: true logo: mobile: "images/logo-mobile.svg" desktop: "images/logo.svg" desktop_height: "36px" footer: copyright_text: 'Free Jekyll theme by <a class="zerostatic" href="https://www.zerostatic.io">www.zerostatic.io</a>' seo: meta_og_title: "Jekyll Serif Theme" meta_og_type: "website" meta_og_url: "https://jekyll-serif-theme.netlify.app" meta_og_image: "https://raw.githubusercontent.com/zerostaticthemes/jekyll-serif-theme/master/screenshots/tn.png" meta_og_description: "Jekyll Serif is a modern business theme for Hugo. It contains content types for the archetypical business website. The theme is fully responsive, blazing fast and artfully illustrated." meta_twitter_card: "summary" meta_twitter_site: "@zerostaticio" meta_twitter_creator: "@zerostaticio" collections: services: output: true permalink: /services/:path/ team: output: true permalink: /team/:path/ defaults: - scope: type: services values: layout: service bodyClass: page-services-single - scope: path: 'images' values: image: true sass: style: compact # possible values: nested expanded compact compressed plugins: - jekyll-environment-variables
28.14
209
0.738451
1e96743f5b53982fc07b0850ff05485bf6851a9d
88
yml
YAML
_data/contact.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
_data/contact.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
_data/contact.yml
00204894pw/00204894pw
ef9670295c5541f4e08d77d2b639ed1e884b7a22
[ "MIT" ]
null
null
null
email: '[email protected]' phone: 'Kontakt przez email' contact_button_link: 'Kontakt'
22
30
0.772727
a8ecc62974e8be43ec789b986bcaf14d3521af6a
1,518
yml
YAML
.gitlab-ci.yml
0054/alert-bot
56d7ef5a32588dee1d6e6e617dd49e4ed1ec68ec
[ "MIT" ]
null
null
null
.gitlab-ci.yml
0054/alert-bot
56d7ef5a32588dee1d6e6e617dd49e4ed1ec68ec
[ "MIT" ]
null
null
null
.gitlab-ci.yml
0054/alert-bot
56d7ef5a32588dee1d6e6e617dd49e4ed1ec68ec
[ "MIT" ]
null
null
null
variables: RECEIVER_REPO: "$CI_REGISTRY_IMAGE/receiver" BOT_REPO: "$CI_REGISTRY_IMAGE/bot" TAG: "0.1-$CI_COMMIT_SHORT_SHA" before_script: - docker info stages: - build - deploy before_script: build-receiver: stage: build tags: - fvm233 script: - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker build -t $RECEIVER_REPO:$TAG -f ./docker/receiver/Dockerfile . - docker push $RECEIVER_REPO:$TAG only: changes: - receiver/* - docker/receiver/* build-bot: stage: build tags: - fvm233 script: - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker build -t $BOT_REPO:$TAG -f ./docker/bot/Dockerfile . - docker push $BOT_REPO:$TAG only: changes: - bot/* - docker/bot/* deploy-receiver: stage: deploy tags: - fvm233 script: - docker stop receiver-bot || true - docker rm receiver-bot || true - docker run -d --env-file $ENV_CONFIG -p5000:5000 --name receiver-bot $RECEIVER_REPO:$TAG dependencies: - build-receiver # when: manual only: refs: - master changes: - receiver/* - docker/receiver/* deploy-bot: stage: deploy tags: - fvm233 script: - docker stop bot || true - docker rm bot || true - docker run -d --env-file $ENV_CONFIG --name bot $BOT_REPO:$TAG dependencies: - build-bot # when: manual only: refs: - master changes: - bot/* - docker/bot/*
19.714286
94
0.628458
37ea69da3dd8ddfacabc40aed79f424545c715d0
43
yml
YAML
ansible/playbooks/deploy-app.yml
0054/devops-demo
d4a7dcd90a9c1a4de4f82755598f479ce0fbe780
[ "MIT" ]
null
null
null
ansible/playbooks/deploy-app.yml
0054/devops-demo
d4a7dcd90a9c1a4de4f82755598f479ce0fbe780
[ "MIT" ]
null
null
null
ansible/playbooks/deploy-app.yml
0054/devops-demo
d4a7dcd90a9c1a4de4f82755598f479ce0fbe780
[ "MIT" ]
null
null
null
--- - hosts: web roles: - role: app
7.166667
15
0.465116
21fd0a4eedf52cbd9ed91bbacd3ce961cb941518
134
yml
YAML
kvm-lab/ansible/roles/postgresql-server/vars/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/postgresql-server/vars/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/postgresql-server/vars/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- postgresql_12_centos7_repo: https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
44.666667
129
0.813433
1121e092dd7684c2e6369b3fab9806fae98f9391
748
yml
YAML
kvm-lab/ansible/roles/docker/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - name: Install required system packages yum: name: - yum-utils - device-mapper-persistent-data - lvm2 - epel-release - PyYAML - gcc - python-devel state: present - name: Install python-pip yum: name: - python2-pip - name: pip install python-compose pip: name: - docker-compose - docker - name: Add Docker repo get_url: url: https://download.docker.com/linux/centos/docker-ce.repo dest: /etc/yum.repos.d/docer-ce.repo - name: Install Docker yum: name: - docker-ce - docker-ce-cli - containerd.io state: present - name: Start and enable docker-service systemd: name: docker state: started enabled: yes
17
64
0.597594
11351cd4f002f35ad516a1d1e3023157debf542c
89
yml
YAML
kvm-lab/ansible/roles/docker-registry/defaults/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/defaults/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/defaults/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- docker_compose_version: "1.24.1" docker_compose_path: /usr/local/bin/docker-compose
17.8
50
0.775281
dd98f9cec848f0b7902e31fc8cc14e656fbe069c
3,728
yml
YAML
srv-manuals/jenknis/Configuration_as_Code/jenkins.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
srv-manuals/jenknis/Configuration_as_Code/jenkins.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
srv-manuals/jenknis/Configuration_as_Code/jenkins.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
jenkins: systemMessage: "Jenkins Configured using Code" numExecutors: 7 mode: NORMAL scmCheckoutRetryCount: 3 labelString: "master-1" crumbIssuer: "standard" # securityRealm: # local: # allowsSignup: false # users: # - id: admin # password: ${adminpw:-admin} # authorizationStrategy: # globalMatrix: # grantedPermissions: # - "Overall/Read:anonymous" # - "Job/Read:anonymous" # - "View/Read:anonymous" # - "Overall/Administer:anonymous" unclassified: location: adminAddress: "[email protected]" url: "http://localhost:8080/" # plugins: # required: # ace-editor: latest # ant: latest # antisamy-markup-formatter: latest # apache-httpcomponents-client-4-api: latest # bootstrap4-api: latest # bouncycastle-api: latest # branch-api: latest # build-timeout: latest # cloudbees-folder: latest # command-launcher: latest # credentials: latest # credentials-binding: latest # display-url-api: latest # durable-task: latest # echarts-api: latest # email-ext: latest # font-awesome-api: latest # git: latest # git-client: latest # git-server: latest # github: latest # github-api: latest # github-branch-source: latest # gitlab-hook: latest # gitlab-plugin: latest # gradle: latest # handlebars: latest # jackson2-api: latest # jdk-tool: latest # jquery-detached: latest # jquery3-api: latest # jsch: latest # junit: latest # ldap: latest # lockable-resources: latest # mailer: latest # matrix-auth: latest # matrix-project: latest # momentjs: latest # okhttp-api: latest # pam-auth: latest # pipeline-build-step: latest # pipeline-github-lib: latest # pipeline-graph-analysis: latest # pipeline-input-step: latest # pipeline-milestone-step: latest # pipeline-model-api: latest # pipeline-model-definition: latest # pipeline-model-extensions: latest # pipeline-rest-api: latest # pipeline-stage-step: latest # pipeline-stage-tags-metadata: latest # pipeline-stage-view: latest # plain-credentials: latest # plugin-util-api: latest # popper-api: latest # resource-disposer: latest # ruby-runtime: latest # scm-api: latest # script-security: latest # snakeyaml-api: latest # ssh-credentials: latest # ssh-slaves: latest # structs: latest # timestamper: latest # token-macro: latest # trilead-api: latest # windows-slaves: latest # workflow-aggregator: latest # workflow-api: latest # workflow-basic-steps: latest # workflow-cps: latest # workflow-cps-global-lib: latest # workflow-durable-task-step: latest # workflow-job: latest # workflow-multibranch: latest # workflow-scm-step: latest # workflow-step-api: latest # workflow-support: latest # ws-cleanup: latest # tool: # git: # installations: # - name: Default # home: "git" # jdk: # installations: # - name: "open-jdk8" # properties: # - installSource: # installers: # - adoptOpenJdkInstaller: # id: "jdk8u232-b09" # - name: "oracle-jdk8" # properties: # - installSource: # installers: # - jdkInstaller: # acceptLicense: true # id: "jdk-8u221-oth-JPR" # maven: # installations: # - name: "Maven 3" # properties: # - installSource: # installers: # - maven: # id: "3.5.4"
25.710345
48
0.594421
690439419b4ee9cff2867d3ece172614b1484e66
378
yml
YAML
kvm-lab/ansible/roles/node-exporter/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/node-exporter/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/node-exporter/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - name: copy node_exporter RPM copy: src: 'node_exporter-0.18.1-1.el7.x86_64.rpm' dest: '/tmp/' owner: root group: root mode: 0777 - name: install node_exporter yum: name: /tmp/node_exporter-0.18.1-1.el7.x86_64.rpm state: present - name: Start and enable node_exporter systemd: name: node_exporter state: started enabled: yes
18.9
52
0.653439
8f78a7f9484990acbe4d2c607d301fcba5018756
258
yml
YAML
kvm-lab/ansible/roles/docker-registry/molecule/default/molecule.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/molecule/default/molecule.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/molecule/default/molecule.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- dependency: name: galaxy driver: name: delegated lint: name: yamllint platforms: - name: molecule-centos template: tmpl_centos_7 provisioner: name: ansible lint: name: ansible-lint verifier: name: testinfra lint: name: flake8
13.578947
27
0.693798
09320b92aa348ae174c3e4916c3fb91a33b8d9a2
727
yml
YAML
kvm-lab/ansible/playbooks/install-docker.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install-docker.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install-docker.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: '{{ host }}' become: true become_user: root become_method: sudo gather_facts: false tasks: - name: Install required system packages yum: name: - yum-utils - device-mapper-persistent-data - lvm2 state: present - name: Add Docker repo get_url: url: https://download.docker.com/linux/centos/docker-ce.repo dest: /etc/yum.repos.d/docer-ce.repo - name: Install Docker yum: name: - docker-ce - docker-ce-cli - containerd.io state: present - name: Start and enable docker-service systemd: name: docker state: started enabled: yes
20.771429
68
0.548831
25fab2df705183b0b414564e9e0838b2d5c85d20
566
yml
YAML
kvm-lab/ansible/roles/haproxy/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/haproxy/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/haproxy/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - name: Install required system packages yum: name: - haproxy state: present - name: configs copy: src: '{{ item.src }}' dest: '{{ item.dest }}' owner: root group: root mode: 0777 with_items: - { src: 'haproxy.cfg', dest: '/etc/haproxy/haproxy.cfg' } - { src: 'haproxy-rsyslog.conf', dest: '/etc/rsyslog.d/haproxy.conf' } - name: restart rsyslog systemd: name: rsyslog state: restarted enabled: yes - name: start end enable HAproxy systemd: name: haproxy state: started enabled: yes
18.866667
74
0.602473
cf8e0eb2b4671a9c8da899629553a66e57f669ee
846
yml
YAML
kvm-lab/ansible/roles/docker-registry/files/docker-compose.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/files/docker-compose.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/files/docker-compose.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
version: "2" services: # nginx: # image: "nginx:alpine" # ports: # - 5043:443 # links: # - registry:registry # volumes: # - /registry/auth:/etc/nginx/conf.d # - /registry/auth/nginx.conf:/etc/nginx/nginx.conf:ro # registry: # image: registry:2 # volumes: # - /registry/data:/var/lib/registry registry: restart: always image: registry:2 ports: - 5000:5000 environment: REGISTRY_HTTP_TLS_CERTIFICATE: /auth/domain.crt REGISTRY_HTTP_TLS_KEY: /auth/domain.key REGISTRY_AUTH: htpasswd REGISTRY_AUTH_HTPASSWD_PATH: /auth/htpasswd REGISTRY_AUTH_HTPASSWD_REALM: Registry Realm volumes: - /registry/data:/var/lib/registry - /registry/auth:/auth - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro
24.882353
60
0.628842
7da22bcd0235255d7f942c606b4e88518dd644f2
1,174
yml
YAML
kvm-lab/ansible/playbooks/install_opendistro_elk.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install_opendistro_elk.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install_opendistro_elk.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: elk become: true become_user: root become_method: sudo # gather_facts: false tasks: - set_fact: ip_list: "{{ ip_list | default([]) + [hostvars[item].ansible_default_ipv4.address] }}" loop: "{{ groups.elk }}" - name: Add Open Distro repo get_url: url: https://d3g5vo6xdbdb9a.cloudfront.net/yum/opendistroforelasticsearch-artifacts.repo dest: /etc/yum.repos.d/opendistroforelasticsearch-artifacts.repo - name: install unzip yum: name: "{{ packages }}" vars: packages: - bash-completion - wget - unzip - name: install packages yum: name: "{{ packages }}" vars: packages: - java-11-openjdk - java-11-openjdk-devel - opendistroforelasticsearch - name: Template a file to /etc/files.conf template: src: ./templates/elasticsearch_opendistro_cluster.j2 dest: /etc/elasticsearch/elasticsearch.yml owner: root group: elasticsearch mode: '0664' - name: run elasticsearch systemd: state: started name: elasticsearch
26.681818
96
0.591141
829d0618454037e80977b716885259d9c3f65574
600
yml
YAML
kvm-lab/terraform/cloud-init/centos_user_data_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/terraform/cloud-init/centos_user_data_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/terraform/cloud-init/centos_user_data_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
#cloud-config # ssh_pwauth: True # chpasswd: # list: | # root:q1q1q1 # expire: False hostname: "{hostname}" users: - name: user groups: wheel shell: /bin/bash sudo: ['ALL=(ALL) NOPASSWD:ALL'] ssh-authorized-keys: - "${rsa_pub}" write_files: - path: "/etc/sysctl.conf" owner: root content: | net.ipv6.conf.all.disable_ipv6=1 net.ipv6.conf.default.disable_ipv6=1 manage_resolv_conf: true resolv_conf: domain: kvm.lab growpart: mode: auto devices: ['/'] runcmd: - sysctl -p - timedatectl set-timezone Europe/Moscow - timedatectl set-ntp true
19.354839
42
0.655
a1a40ec5218239af979cbdaffc7d6b855fb04543
134
yml
YAML
kvm-lab/ansible/playbooks/haproxy.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/haproxy.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/haproxy.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: haproxy1, haproxy2 become: true become_user: root become_method: sudo gather_facts: false roles: - haproxy
14.888889
27
0.686567
f64b50a01c06665b8fc4fe769b287d8bd6fb81d1
215
yml
YAML
kvm-lab/ansible/roles/postgresql-server/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/postgresql-server/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/postgresql-server/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - name: install postgresql repo yum: name: - "{{ postgresql_12_centos7_repo }}" state: present - name: install postgresql server yum: name: - postgresql12-server state: present
15.357143
42
0.623256
60410d781cd6b1e919cbbeafb110d08bbbcfb78e
500
yml
YAML
kvm-lab/ansible/playbooks/install-mariadb.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install-mariadb.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install-mariadb.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: '{{ host }}' become: true become_user: root become_method: sudo gather_facts: false tasks: - name: install mariadb yum: name: - mariadb-server state: present - name: overwrite my.cnf template: src: ./templates/my.j2 dest: /etc/my.cnf owner: root group: root mode: '0644' - name: Start and enable service systemd: name: mariadb state: started enabled: yes
18.518519
36
0.536
595d13f85addf731e0fa50ef3d9f49a2d538bbd2
181
yml
YAML
kvm-lab/terraform/cloud-init/network_config_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/terraform/cloud-init/network_config_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/terraform/cloud-init/network_config_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
network: version: 2 config: - type: physical name: eth0 subnets: - type: static address: ${ip} netmask: 255.255.255.0 gateway: 10.10.1.1
16.454545
30
0.535912
5985bdac464d476401c9d19b07d17fc9402b3449
825
yml
YAML
kvm-lab/ansible/playbooks/install-docker-registry.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install-docker-registry.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/install-docker-registry.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: '{{ host }}' become: true become_user: root become_method: sudo gather_facts: false tasks: - name: Install Python SDK for Docker yum: name: - python-docker-py - python3 - python3-pip state: present - name: pip install pyOpenSSL pip: name: pyOpenSSL executable: pip3 - name: Generate a Self Signed OpenSSL certificate openssl_certificate: path: /registry/ssl/registry.crt privatekey_path: /registry/ssl/registry.pem csr_path: /registry/ssl/registry.csr provider: selfsigned - name: Run Docker Registry Server docker_container: name: registry image: registry:2 published_ports: 5000:5000 restart_policy: always state: started
23.571429
54
0.606061
49fab5f06aed13b1bab1483ec46834d070ce0af9
600
yml
YAML
kvm-lab/terraform/cloud-init/ubuntu_user_data_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/terraform/cloud-init/ubuntu_user_data_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/terraform/cloud-init/ubuntu_user_data_cloud_init.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
#cloud-config # ssh_pwauth: True # chpasswd: # list: | # root:q1q1q1 # expire: False hostname: "${hostname}" users: - name: user groups: sudo shell: /bin/bash sudo: ['ALL=(ALL) NOPASSWD:ALL'] ssh-authorized-keys: - "${rsa_pub}" write_files: - path: "/etc/sysctl.conf" owner: root content: | net.ipv6.conf.all.disable_ipv6=1 net.ipv6.conf.default.disable_ipv6=1 manage_resolv_conf: true resolv_conf: domain: kvm.lab growpart: mode: auto devices: ['/'] runcmd: - sysctl -p - timedatectl set-timezone Europe/Moscow - timedatectl set-ntp true
19.354839
42
0.653333
4d71f2e9ed389cc739cdb255167a09b3836ab678
149
yml
YAML
kvm-lab/ansible/playbooks/inf-jenkins.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/inf-jenkins.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/inf-jenkins.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: inf-jenkins become: true become_user: root become_method: sudo gather_facts: false roles: - docker # - docker-jenkins
14.9
22
0.657718
7f8d40d3bebd9117067007d2893f1019f4d1adcb
396
yml
YAML
kvm-lab/ansible/roles/postgres-exporter/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/postgres-exporter/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/postgres-exporter/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - name: copy node_exporter RPM copy: src: 'postgres_exporter-0.8.0-4.el7.x86_64.rpm' dest: '/tmp/' owner: root group: root mode: 0777 - name: install postgres_exporter yum: name: /tmp/postgres_exporter-0.8.0-4.el7.x86_64.rpm state: present - name: Start and enable postgres_exporter systemd: name: postgres_exporter state: started enabled: yes
19.8
55
0.669192
c429546e8024fd52d4cb7d27c1f761e542d8f79b
236
yml
YAML
kvm-lab/ansible/playbooks/change_hostname.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/change_hostname.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/change_hostname.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: web become: true become_user: root become_method: sudo gather_facts: false tasks: # - debug: # msg: hostname {{ host_name }} - name: change hostname hostname: name: "{{ host_name }}"
18.153846
39
0.576271
a07be78bc00c3b54dad86e807243bd00031ea920
164
yml
YAML
kvm-lab/ansible/playbooks/apply-role.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/apply-role.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/playbooks/apply-role.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - hosts: '{{ host }}' become: true become_user: root become_method: sudo # gather_facts: false roles: - postgresql-server - postgres-exporter
16.4
23
0.640244
b5a2b80faca004484d6245d2fd46814b72eb8fb6
1,668
yml
YAML
kvm-lab/ansible/roles/docker-registry/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
kvm-lab/ansible/roles/docker-registry/tasks/main.yml
0054/lab
da1637ecc334a716084de55fe01741f208859c3b
[ "MIT" ]
null
null
null
--- - name: Install required system packages yum: name: - yum-utils - device-mapper-persistent-data - lvm2 - PyYAML - epel-release - gcc - python-devel state: present - name: Install python-pip yum: name: - python2-pip - name: pip install python-compose pip: name: - docker-compose - docker - name: Add Docker repo get_url: url: https://download.docker.com/linux/centos/docker-ce.repo dest: /etc/yum.repos.d/docer-ce.repo - name: Install Docker yum: name: - docker-ce - docker-ce-cli - containerd.io state: present - name: Start and enable docker-service systemd: name: docker state: started enabled: yes - name: create volumes file: path: '{{ item }}' state: directory mode: '0766' with_items: - /registry/data - /registry/auth - name: copy htpasswd copy: src: '{{ item.src }}' dest: '{{ item.dest }}' owner: root group: root mode: 0777 with_items: - { src: 'htpasswd', dest: '/registry/auth/htpasswd' } - { src: 'domain.crt', dest: '/registry/auth/domain.crt' } - { src: 'domain.key', dest: '/registry/auth/domain.key' } - { src: 'nginx.conf', dest: '/registry/auth/nginx.conf' } - { src: 'docker-compose.yml', dest: '/registry/docker-compose.yml' } - name: Install Docker Compose (if configured). get_url: url: https://github.com/docker/compose/releases/download/{{ docker_compose_version }}/docker-compose-Linux-x86_64 dest: "{{ docker_compose_path }}" mode: 0755 - name: Docker Compose Up docker_compose: project_src: /registry
21.662338
117
0.61211
8a30aa49b8c5688892aa1b7f0a369410f625f339
425
yml
YAML
_config.yml
0065paula/blog
0649c0ca32e11d94c770b80144ea9444ec1e953b
[ "MIT" ]
null
null
null
_config.yml
0065paula/blog
0649c0ca32e11d94c770b80144ea9444ec1e953b
[ "MIT" ]
null
null
null
_config.yml
0065paula/blog
0649c0ca32e11d94c770b80144ea9444ec1e953b
[ "MIT" ]
null
null
null
# Permalinks permalink: pretty relative_permalinks: true # Setup title: Poole tagline: The Jekyll Butler url: http://getpoole.com paginate: 1 baseurl: / author: name: Mark Otto url: https://twitter.com/mdo email: [email protected] # Custom vars version: 1.0.0 github: repo: https://0065paula.github.io/blog
21.25
50
0.555294
d6c349c5d19e811dade802378647bb1a9bbd353e
1,697
yml
YAML
.github/workflows/master_hotelmanagementwebapp.yml
007-AkSingh/Hotel-book
00b320860a48319e615aa0158896c22830403610
[ "Apache-2.0" ]
null
null
null
.github/workflows/master_hotelmanagementwebapp.yml
007-AkSingh/Hotel-book
00b320860a48319e615aa0158896c22830403610
[ "Apache-2.0" ]
null
null
null
.github/workflows/master_hotelmanagementwebapp.yml
007-AkSingh/Hotel-book
00b320860a48319e615aa0158896c22830403610
[ "Apache-2.0" ]
null
null
null
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy # More GitHub Actions for Azure: https://github.com/Azure/actions name: Build and deploy PHP app to Azure Web App - HotelManagementwebapp on: push: branches: - master workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '7.4' - name: Check if composer.json exists id: check_files uses: andstor/file-existence-action@v1 with: files: 'composer.json' - name: Run composer install if composer.json exists if: steps.check_files.outputs.files_exists == 'true' run: composer validate --no-check-publish && composer install --prefer-dist --no-progress - name: Upload artifact for deployment job uses: actions/upload-artifact@v2 with: name: php-app path: . deploy: runs-on: ubuntu-latest needs: build environment: name: 'Production' url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} steps: - name: Download artifact from build job uses: actions/download-artifact@v2 with: name: php-app - name: 'Deploy to Azure Web App' uses: azure/webapps-deploy@v2 id: deploy-to-webapp with: app-name: 'HotelManagementwebapp' slot-name: 'Production' publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_A23D15DCFEB64B1E96146A4EFE436AF1 }} package: .
27.819672
106
0.604007
7cd7e5afb88926c69ea1d17e288f3744eed6fce3
3,266
yml
YAML
.travis.yml
007-surajit/cordova-plugin-fusedlocation
09c9000491c2de38aeacc15cfd8efa380b3e0dd0
[ "Apache-2.0" ]
null
null
null
.travis.yml
007-surajit/cordova-plugin-fusedlocation
09c9000491c2de38aeacc15cfd8efa380b3e0dd0
[ "Apache-2.0" ]
null
null
null
.travis.yml
007-surajit/cordova-plugin-fusedlocation
09c9000491c2de38aeacc15cfd8efa380b3e0dd0
[ "Apache-2.0" ]
null
null
null
# This Travis configuration file is built after a Cordova Paramedic # specific template with minimal modifications and adaptations: # https://github.com/apache/cordova-paramedic/blob/master/.travis.yml sudo: false addons: jwt: # SAUCE_ACCESS_KEY secure: yGb6UDaYlYgPpe6T3mqSvUbWrJAFeAJNQnVOFr9tfWEt9SdTmwrU68cEVMKmpc+nqCkvfrAn49XPzcERkgMDUQXPQzWHo87TfYpjqu3/+jfqyJy6RuE5ddbWQW05LtgRhjiPfmXmpAe41dbI7khl8Kx60zz9cxyHqBcR/k9bfFs= env: global: - SAUCE_USERNAME=snay - TRAVIS_NODE_VERSION=6 - ANDROID_API_LEVEL=28 - ANDROID_BUILD_TOOLS_VERSION=28.0.3 language: node_js node_js: 6 # yaml anchor/alias: https://medium.com/@tommyvn/travis-yml-dry-with-anchors-8b6a3ac1b027 _ios: &_ios os: osx osx_image: xcode10.2 _android: &_android language: android os: linux jdk: oraclejdk8 android: components: - tools - build-tools-$ANDROID_BUILD_TOOLS_VERSION - android-$ANDROID_API_LEVEL licenses: - 'android-sdk-preview-license-.+' - 'android-sdk-license-.+' - 'google-gdk-license-.+' matrix: include: # many tests with saucelabs - env: PLATFORM=browser-chrome - env: PLATFORM=ios-11.3 <<: *_ios - env: PLATFORM=ios-12.0 <<: *_ios - env: PLATFORM=ios-12.2 <<: *_ios - env: PLATFORM=android-5.1 <<: *_android - env: PLATFORM=android-6.0 <<: *_android - env: PLATFORM=android-7.0 <<: *_android - env: PLATFORM=android-7.1 <<: *_android - env: PLATFORM=android-8.0 <<: *_android - env: PLATFORM=android-8.1 <<: *_android - env: PLATFORM=android-9.0 <<: *_android before_install: # manually install Node for `language: android` - if [[ "$PLATFORM" =~ android ]]; then nvm install $TRAVIS_NODE_VERSION; fi - node --version - if [[ "$PLATFORM" =~ android ]]; then gradle --version; fi - if [[ "$PLATFORM" =~ ios ]]; then npm install -g ios-deploy; fi - npm install -g cordova # install paramedic if not running on paramedic repo - if ! [[ "$TRAVIS_REPO_SLUG" =~ cordova-paramedic ]]; then npm install -g github:apache/cordova-paramedic; fi install: - npm install before_script: - | if [[ "$TRAVIS_REPO_SLUG" =~ cordova-paramedic ]]; then # when used in the cordova-paramedic repo TEST_COMMAND="npm run eslint" PARAMEDIC_PLUGIN_TO_TEST="./spec/testable-plugin/" PARAMEDIC_COMMAND="node main.js" else # when used in any other (plugin) repo TEST_COMMAND="npm test" PARAMEDIC_PLUGIN_TO_TEST=$(pwd) PARAMEDIC_COMMAND="cordova-paramedic" fi - PARAMEDIC_BUILDNAME=travis-$TRAVIS_REPO_SLUG-$TRAVIS_JOB_NUMBER - | echo "Variables now are set to:" echo "TEST_COMMAND=$TEST_COMMAND" echo "ADDITIONAL_TESTS=$ADDITIONAL_TESTS" echo "PARAMEDIC_COMMAND=$PARAMEDIC_COMMAND" echo "PLATFORM=$PLATFORM" echo "PARAMEDIC_PLUGIN_TO_TEST=$PARAMEDIC_PLUGIN_TO_TEST" echo "PARAMEDIC_BUILDNAME=$PARAMEDIC_BUILDNAME" script: - $TEST_COMMAND - if [[ "$ADDITIONAL_TESTS_DIR" != "" ]]; then cd $ADDITIONAL_TESTS_DIR && npm install && npm test; else $PARAMEDIC_COMMAND --config ./pr/$PLATFORM --plugin $PARAMEDIC_PLUGIN_TO_TEST --buildName $PARAMEDIC_BUILDNAME; fi
29.423423
184
0.680955
38c99149634d9facb11824ea40dc687e8581a2dd
286
yaml
YAML
monitoring/JVM/jvm-Monitor-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/JVM/jvm-Monitor-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/JVM/jvm-Monitor-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
#为每个namespave创建一个SVC即可,在需要被监控的java程序的dp的yaml里面为pod添加labels,即可依靠svc自动发现到pod apiVersion: v1 kind: Service metadata: namespace: test456 name: jvm-monitor labels: app: pod-jvm spec: selector: app: pod-jvm ports: - name: jvm-monitor port: 12346 targetPort: 12346
17.875
74
0.737762
6a66264ca12625e06a67ae25604e48d5d2ce4a0a
428
yaml
YAML
monitoring/controllerManager&Scheduler/kube-controller-manager-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/controllerManager&Scheduler/kube-controller-manager-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/controllerManager&Scheduler/kube-controller-manager-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: Service metadata: namespace: kube-system name: kube-controller-manager labels: k8s-app: kube-controller-manager spec: selector: component: kube-controller-manager ports: - name: http-metrics port: 10252 targetPort: 10252 #修改 kube-controller-manager 配置,/etc/kubernetes/manifests/kube-controller-manager.yaml, #--bind-address=0.0.0.0 #改为0.0.0.0 #kubectl get cs 集群组件状态,注销--port=0
22.526316
86
0.728972
e6dc29ee0681a5da9390b93b7c5b4ed7040d420d
253
yaml
YAML
monitoring/redis/redis-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/redis/redis-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/redis/redis-svc.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: Service metadata: name: cache03 namespace: test456 labels: k8s-app: cache03 spec: type: ClusterIP ports: - name: cache03 port: 6793 protocol: TCP targetPort: 6379 selector: k8s-app: cache03
14.882353
22
0.648221
2fe6fe7001c579e446b50cc6abb5f0f0498c22d9
264
yaml
YAML
monitoring/ingressRelatedToPrometheus/prometheus-service.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/ingressRelatedToPrometheus/prometheus-service.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/ingressRelatedToPrometheus/prometheus-service.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: Service metadata: labels: prometheus: k8s name: prometheus-k8s namespace: monitoring spec: ports: - name: web port: 9090 targetPort: web selector: app: prometheus prometheus: k8s # sessionAffinity: ClientIP
15.529412
31
0.681818
4b0f21fcdff377c9e0f17b7d76df08f717d7ddb4
394
yaml
YAML
monitoring/ingressRelatedToPrometheus/prometheus-ingress.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/ingressRelatedToPrometheus/prometheus-ingress.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
monitoring/ingressRelatedToPrometheus/prometheus-ingress.yaml
00724/deploy-k8s
c4ad00ce58d741dbce2380828f42f45eb7f58896
[ "Apache-2.0" ]
null
null
null
apiVersion: extensions/v1beta1 kind: Ingress metadata: annotations: k8s.kuboard.cn/workload: prometheus-k8s labels: app: prometheus prometheus: k8s name: prometheus-k8s namespace: monitoring spec: rules: - host: jk.code404.cn http: paths: - backend: serviceName: prometheus-k8s servicePort: 9090 path: /
19.7
43
0.611675