This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://57943b70dd3554c128ba686b5f21dc2a.loophole.site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
stable-2.10.2: | |
linkerd: | |
chart_name: linkerd2 | |
chart_version: 2.10.2 | |
linkerd-multicluster: | |
chart_name: linkerd-multicluster | |
chart_version: 2.10.2 | |
linkerd-viz: | |
chart_name: linkerd-viz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if $::lsbdistid == 'MMP' { | |
# This is a hack to get around a facter 3,4 bug | |
# where the codename is not read correctly | |
if $::lsbdistcodename == 'pisces' { | |
ini_setting{'DISTRIB_CODENAME': | |
ensure => present, | |
path => '/etc/lsb-release', | |
value => 'bionic', | |
setting => 'DISTRIB_CODENAME', | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ruby | |
# Package your Ruby project. | |
# Add steps that install rails, analyze code, save build artifacts, deploy, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby | |
trigger: | |
- testing | |
- prduction | |
pool: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$hashdata = { | |
"product_teams" => [ | |
{ | |
"name"=> "iphone", | |
"token"=> "apple" | |
}, | |
{ | |
"name"=> "xbox", | |
"token"=> "grapes" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require 'socket' | |
require 'time' | |
require 'tmpdir' | |
require 'json' | |
# = SysInfo | |
# | |
# A container for the platform specific system information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class test(Hash $config){ | |
file{'/tmp/test123.txt': | |
ensure => file, | |
content => Sensitive($config.to_yaml), | |
} | |
} | |
$jwt_token = Sensitive.new('doublesecret') | |
$config = { | |
general => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class test(Sensitive $var1){ | |
file{'/tmp/test123.txt': | |
ensure => file, | |
content => $var1, | |
} | |
} | |
class{'test': var1 => Sensitive.new('doublesecret') } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'bolt' | |
require 'pry' | |
require 'bolt/config' | |
require 'bolt/inventory' | |
require 'bolt/logger' | |
require "tty-prompt" | |
prompt = TTY::Prompt.new |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# allows docker containers to run systemd for traditional CM acceptance testing. | |
# Note obviously systemd must be installed in the container | |
# this also is for unprivileged mode | |
# Requires a operating systemd installed RHEL7, CENTOS7, ... that supports systemd. | |
# https://developers.redhat.com/blog/2016/09/13/running-systemd-in-a-non-privileged-container/ | |
driver: | |
name: docker | |
run_options: |
NewerOlder