This file contains hidden or 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
| placeholder |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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') } |
NewerOlder