📂 repo_root/
📄 Jenkinsfile (has no file extension, references tasks in xx_BUILD_STEP folders below)
📂 01_BUILD/
📄 _build.sh
Dockerfile.build
(optional - add more files for BUILD stage here)
📂 02_UNIT_TESTS/
root@ip-w-x-y-z:/opt/ops/ansible# ANSIBLE_DEBUG=y ansible-playbook test.yaml -t configure -l <EC2_ID> -vvvvv | |
1039 1459767500.53173: starting run | |
Using /etc/ansible/ansible.cfg as config file | |
1039 1459767517.21890: in VariableManager get_vars() | |
1039 1459767517.23086: done with get_vars() | |
1039 1459767517.23098: in VariableManager get_vars() | |
1039 1459767517.23495: done with get_vars() | |
1039 1459767517.25708: in VariableManager get_vars() | |
1039 1459767517.26139: done with get_vars() | |
1039 1459767517.26150: in VariableManager get_vars() |
ANSIBLE_DEBUG=y ansible <EC2_ID> -s -m shell -a '/bin/true' -vvvvv |
📂 repo_root/
📄 Jenkinsfile (has no file extension, references tasks in xx_BUILD_STEP folders below)
📂 01_BUILD/
📄 _build.sh
Dockerfile.build
(optional - add more files for BUILD stage here)
📂 02_UNIT_TESTS/
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
resource "aws_security_group" "sg" { | |
vpc_id = "${var.vpc}" | |
name = "${var.name}" | |
description = "${var.description}" | |
tags = "${merge(var.tags, map("Name", format("%s", var.name)))}" | |
} | |
resource "aws_security_group_rule" "sg_rule_sg_ids" { | |
count = "${length(var.inbound_sources) * (var.add_rules ? 1 : 0)}" | |
type = "${var.type}" |
Kafka 0.11.0.0 (Confluent 3.3.0) added support to manipulate offsets for a consumer group via cli kafka-consumer-groups
command.
kafka-consumer-groups --bootstrap-server <kafkahost:port> --group <group_id> --describe
Note the values under "CURRENT-OFFSET" and "LOG-END-OFFSET". "CURRENT-OFFSET" is the offset where this consumer group is currently at in each of the partitions.
[profile] | |
layer_height = 0.2 | |
wall_thickness = 1.2 | |
retraction_enable = True | |
solid_layer_thickness = 1.2 | |
fill_density = 20 | |
print_speed = 50 | |
print_temperature = 210 | |
print_temperature2 = 0 | |
print_temperature3 = 0 |
[Unit] | |
Description=launch chromium | |
[Service] | |
User=pi | |
Environment=DISPLAY=:0 | |
ExecStart=/usr/bin/chromium-browser --kiosk --disable-session-crashed-bubble 127.0.0.1 | |
[Install] | |
[email protected] |
(MLE-297-Fix-naming-for-prometheus) $ ./prepare-commit-msg.sh 'Fix featureA in controller' | |
[MLE-297] Fix featureA in controller |
repos: | |
- repo: https://github.com/lowess/pre-commit-hooks | |
rev: v1.2.0 # Get the latest from: https://github.com/lowess/pre-commit-hooks/releases | |
hooks: | |
- id: jinja2-render-template | |
name: Render atlantis.yaml configuration | |
args: | |
- atlantis.j2 | |
- --output | |
- atlantis.yaml |