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
apiVersion: networking.istio.io/v1alpha3 | |
kind: DestinationRule | |
metadata: | |
name: helloserver-mesh-max-pending | |
namespace: asm-test | |
spec: | |
workloadSelector: | |
matchLabels: | |
app: helloserver | |
host: hellosvc.asm-test.svc.cluster.local |
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
gcloud privateca pools create $(CA_POOL) \ | |
--location $(LOCATION) \ | |
--tier devops \ | |
--project $(PROJECT_ID) \ | |
--issuance-policy private-ca/policy.yaml | |
gcloud privateca roots create $(ROOT_CA) \ | |
--pool=$(CA_POOL) \ | |
--location=$(LOCATION) \ | |
--project=$(PROJECT_ID) \ |
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://cloud.google.com/container-optimized-os/docs/how-to/toolbox | |
* https://blog.container-solutions.com/ebpf-cloud-native-tools-an-overview-of-falco-inspektor-gadget-hubble-and-cilium | |
* https://github.com/iovisor/kubectl-trace | |
* https://github.com/iovisor/bpftrace | |
* https://blog.aquasec.com/vmlinux.h-ebpf-programs | |
* https://www.brendangregg.com/BPF/bpf_performance_tools_book.png | |
* https://github.com/envoyproxy/envoy/blob/main/bazel/PPROF.md | |
* https://kubernetes.io/blog/2017/12/using-ebpf-in-kubernetes/ | |
* https://github.com/iovisor/kubectl-trace | |
* https://cloud.google.com/profiler/docs/profiling-java |
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
include: | |
- supervisorctl-update |
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
{ config, pkgs, ... }: | |
memcachedFix = pkgs.php56Packages.memcached.overrideAttrs oldAttrs: { | |
buildInputs = oldAttrs.buildInputs ++ [ pkgs.zlib ]; | |
}; | |
in | |
{ | |
environment.systemPackages = with pkgs; [ | |
memcachedFix | |
] |
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
def fileExists?(Dir: String): Task[Boolean] = { | |
val task: Stream[Task, Boolean] = | |
fs2.io.file.readAll[Task](Paths.get(dir, "default.nix"), 4096) | |
exists ( _ => true ) | |
} |
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
jenkinsAdmin = mkOption { | |
11 type = types.submodule { | |
10 options = { | |
9 user = mkOption { | |
8 type = types.str; | |
7 default = "fa-rel-jenkins"; | |
6 description = '' | |
5 Name for Jenkins admin user. | |
4 ''; | |
3 }; |
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
result/bin/eb_deploy --help | |
/nix/store/0d00q7k7y9nnjppcshq3766xi4l45h60-ruby-2.3.0-p0/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- bundler/setup (LoadError) | |
from /nix/store/0d00q7k7y9nnjppcshq3766xi4l45h60-ruby-2.3.0-p0/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb:55:in `require' | |
from result/bin/eb_deploy:16:in `<main>' |
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
{ | |
"title": "svij storm dashy draft", | |
"description": "wth", | |
"graphs": [ | |
{ | |
"definition": { | |
"requests": [ | |
{ | |
"q": "avg:system.mem.free{env:lookout-storm-lesstage0} by {host}" | |
} |
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
ERROR [CompactionExecutor:2969] 2016-01-20 09:32:30,256 CassandraDaemon.java (line 198) Exception in thread Thread[CompactionExecutor:2969,1,main] | |
java.lang.RuntimeException: Out of native memory occured, You can avoid it by increasing the system ram space or by increasing bloom_filter_fp_chance. | |
at org.apache.cassandra.utils.obs.OffHeapBitSet.<init>(OffHeapBitSet.java:49) | |
at org.apache.cassandra.utils.FilterFactory.createFilter(FilterFactory.java:85) | |
at org.apache.cassandra.utils.FilterFactory.getFilter(FilterFactory.java:79) | |
at org.apache.cassandra.io.sstable.SSTableWriter$IndexWriter.<init>(SSTableWriter.java:431) | |
at org.apache.cassandra.io.sstable.SSTableWriter.<init>(SSTableWriter.java:102) | |
at org.apache.cassandra.db.compaction.CompactionTask.createCompactionWriter(CompactionTask.java:282) | |
at org.apache.cassandra.db.compaction.CompactionTask.runWith(CompactionTask.java:152) | |
at org.apache.cassandra.io.util.DiskAwareRunnable.runMayThrow(DiskAw |
NewerOlder