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: apps/v1 | |
kind: StatefulSet | |
metadata: | |
name: tempo | |
namespace: tempo | |
spec: | |
selector: | |
matchLabels: | |
app: tempo | |
serviceName: "tempo" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
package main | |
import ( | |
"fmt" | |
"math/bits" | |
) | |
func main() { | |
c := combinations([]string{"A", "B", "C"}, 2) | |
fmt.Println(c) |
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
#!/bin/bash | |
DATE=`date +%F` | |
for NS in `kubectl get ns --no-headers -o custom-columns=":metadata.name"` | |
do | |
kubectl get all -n $NS -o yaml > ${DATE}-${NS}.yaml | |
done |
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
# Bye Docker on M1 | |
# don't do anything as root | |
brew install lima | |
brew uninstall --ignore-dependencies qemu | |
# Install necessary packages for building | |
brew install libffi gettext glib pkg-config autoconf automake pixman ninja | |
# Clone qemu |
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
package main | |
import ( | |
"fmt" | |
"log" | |
"os" | |
"github.com/drone/drone-yaml/yaml" | |
"github.com/goccy/go-graphviz" | |
"github.com/goccy/go-graphviz/cgraph" |
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
package kitlogadapter | |
import ( | |
"context" | |
"github.com/go-kit/kit/log" | |
kitlevel "github.com/go-kit/kit/log/level" | |
"github.com/jackc/pgx/v4" | |
) |
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
diff --git a/src/cd-scsi.h b/src/cd-scsi.h | |
index 6351f4a..feb935e 100644 | |
--- a/src/cd-scsi.h | |
+++ b/src/cd-scsi.h | |
@@ -26,6 +26,8 @@ | |
#include "cd-usb-bulk-msd.h" | |
#include "scsi-constants.h" | |
+#include <CoreFoundation/CoreFoundation.h> | |
+ |
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
# Maintainer: Vasiliy Bukharev <[email protected]> | |
pkgname=consul-bin | |
pkgver=1.8.2 | |
pkgrel=1 | |
pkgdesc='A tool for service discovery, monitoring and configuration.' | |
#arch=('i686') | |
#arch=('x86_64') | |
arch=('i686' 'x86_64' 'arm' 'armv6h' 'aarch64') | |
url="https://www.consul.io" |
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
// do not report logger gokit | |
(github.com/go-kit/kit/log.Logger).Log |