Anton Patsev

Results 169 issues of Anton Patsev

``` upstream skydive_backend { server 127.0.0.1:8082; } server { listen 443 ssl; server_name skydive.mycompany.local; access_log /var/log/nginx/skydive-access.log full; error_log /var/log/nginx/skydive-error.log warn; location / { proxy_pass http://skydive_backend; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade;...

Add check installed docker and docker-ce I installed skydive by ansible playbook and it work. This is hard code. Need refactored. ``` [root@skydive-apatsev-3 ~]# yum list installed docker* Installed Packages...

Hello! Thanks for role jenkins! Can not set specific jenkins version when use jenkins_prefer_lts: true. If i set only `jenkins_prefer_lts: true`, then installed latest lts jenkins version from debian-stable repository....

Hello! Thanks for jenkins role! ![image](https://user-images.githubusercontent.com/10828883/180641257-e45eaa56-7a10-46b2-8a30-f3d90b229577.png) output ``` TASK [geerlingguy.jenkins : Install Jenkins plugins using password.] *************************************************************************** task path: /home/user/.ansible/roles/geerlingguy.jenkins/tasks/plugins.yml:42 Воскресенье 24 июля 2022 15:27:37 +0600 (0:00:00.670) 0:03:16.380 ****** redirecting...

Box https://vagrantcloud.com/geerlingguy/boxes/centos7/versions/1.2.16/providers/virtualbox.box Terraform config ``` resource "virtualbox_vm" "node" { count = 3 name = format("node%02d", count.index + 1) image = "virtualbox.box" cpus = 1 memory = "2048 mib" network_adapter {...

main.tf ``` resource "virtualbox_vm" "node" { count = 1 name = format("node-%02d", count.index + 1) image = "bento-centos-7.box" cpus = 1 memory = "512 mib" network_adapter { type = "hostonly"...

Hello! Thanks for fpm! I try convert python-dateutil to rpm ``` fpm -s python -t rpm python-dateutil==2.8.1 Doing `require 'backports'` is deprecated and will not load any backport in the...