Info here assumes you are in the base of https://github.com/cyberark/conjur-oss-helm-chart repo
This assumes that only conjur is in the specified namespace. If not, manually set the helm_chart_name
variable
ns=""
FROM python:3.8-slim-bullseye | |
RUN apt update && \ | |
DEBIAN_FRONTEND="noninteractive" apt install -y procps && \ | |
apt clean | |
RUN pip3 install py-spy==0.3.11 | |
RUN mkdir -p /output |
*.sw[po] |
PS ...\boringssl> mkdir build | |
PS ...\boringssl> cd build | |
PS ...\boringssl> # Create build_boringssl.ps1 | |
PS ...\boringssl\build> powershell -executionpolicy bypass -File .\build_boringssl.ps1 | |
... | |
DLL is at ...\boringssl\build\outx64\ssl\ssl.dll |
import logging | |
import os | |
import sys | |
import time | |
import multiprocessing as mp | |
from multiprocessing import Process, Queue | |
try: | |
from datadog_checks.base import AgentCheck |
package main | |
import ( | |
"bufio" | |
"bytes" | |
"context" | |
"fmt" | |
"io" | |
"os" | |
"os/exec" |
version: "3" | |
services: | |
# Puppet - Compilation Server | |
puppet-compiler: | |
image: puppet/puppetserver:${PUPPET_SERVER_TAG:-latest} | |
network_mode: "host" | |
ports: | |
- 8140 | |
volumes: |
#!/bin/bash | |
set -euo pipefail | |
if [ $EUID != 0 ]; then | |
echo "Must run this script as root!" | |
exit 1 | |
fi | |
PUPPET_VERSION=6 |
Info here assumes you are in the base of https://github.com/cyberark/conjur-oss-helm-chart repo
This assumes that only conjur is in the specified namespace. If not, manually set the helm_chart_name
variable
ns=""
package log | |
import ( | |
"bytes" | |
"fmt" | |
"reflect" | |
"regexp" | |
"strings" | |
"testing" |