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
| # nerdctl run --rm -p 4317:4317 -p 4318:4318 -v "$PWD/otel.yml:/etc/otelcol/config.yaml" otel/opentelemetry-collector:latest | |
| receivers: | |
| otlp: | |
| protocols: | |
| grpc: | |
| endpoint: 0.0.0.0:4317 | |
| http: | |
| endpoint: 0.0.0.0:4318 | |
| exporters: |
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
| apiVersion: kustomize.config.k8s.io/v1beta1 | |
| kind: Kustomization | |
| resources: | |
| - deploy.yaml | |
| patches: | |
| - some-patch.yaml |
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
| Vagrant.configure("2") do |config| | |
| config.vm.box = "generic/ubuntu1804" | |
| config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: [] | |
| config.disksize.size = '10GB' | |
| config.vm.provider "qemu" do |qe| | |
| qe.machine = "pc" | |
| qe.arch = "x86_64" | |
| qe.cpu = "qemu64" | |
| qe.net_device = "virtio-net-pci" |
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
| Vagrant.configure("2") do |config| | |
| config.vm.box = "starboard/ubuntu-arm64-20.04.5" | |
| config.vm.box_version = "20221120.20.40.0" | |
| config.vm.provider "vmware_desktop" do |v| | |
| v.ssh_info_public = true | |
| v.gui = true | |
| v.linked_clone = false | |
| v.vmx["ethernet0.virtualdev"] = "vmxnet3" | |
| end | |
| end |
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
| - name: Install aptitude | |
| apt: | |
| name: aptitude | |
| state: latest | |
| update_cache: true | |
| - name: Install required system packages | |
| apt: | |
| pkg: | |
| - apt-transport-https |
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
| brew tap westelh/extlms | |
| brew install --cask extlms |