---
apiVersion: v1
kind: Namespace
metadata:
name: valkey
labels:
app.kubernetes.io/name: valkey
app.kubernetes.io/component: database
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
| # cuenv | |
| > A modern application build toolchain with typed environments and CUE-powered task orchestration. | |
| cuenv provides two core primitives for secure, validated development environments: | |
| ## Core Primitives | |
| ### `cuenv exec -- <command>` |
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
| with import <nixpkgs> {}; | |
| stdenv.mkDerivation { | |
| name = "rust-env"; | |
| nativeBuildInputs = [ | |
| rustc cargo rustracerrustfmt rls | |
| # Example Build-time Additional Dependencies | |
| pkgconfig | |
| ]; |
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
| from(bucket: "devrel-platform-metrics") | |
| |> range(start: v.timeRangeStart, stop: v.timeRangeStop) | |
| |> filter(fn: (r) => r["_measurement"] == "docker_hub") | |
| |> filter(fn: (r) => r["_field"] == "pull_count") | |
| |> group(columns: ["url"]) | |
| |> count() | |
| |> group() | |
| |> sort(columns: ["_value"], desc: true) |
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
| .define( | |
| INFLUXDB_MEASUREMENT, | |
| Type.STRING, | |
| "", | |
| Importance.LOW, | |
| INFLUXDB_MEASUREMENT_DOC | |
| ) | |
| .define( | |
| INFLUXDB_MEASUREMENT_FIELD, | |
| Type.STRING, |
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
| managers: | |
| arch: | |
| command: yay | |
| install: -Sy --noconfirm | |
| uninstall: -Rd --noconfirm | |
| debian: | |
| command: apt | |
| install: install -y | |
| uninstall: uninstall -y | |
| nix: |
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
| import * as pulumi from "@pulumi/pulumi"; | |
| import * as k8s from "@pulumi/kubernetes"; | |
| const config = new pulumi.Config(); | |
| const kubernetesProvider = new k8s.Provider("metrics", { | |
| kubeconfig: config.requireSecret("kubeconfig"), | |
| // Why doesn't it use the namespace from the context? | |
| // PR submitted: https://github.com/pulumi/pulumi-kubernetes/pull/862 | |
| namespace: "community" | |
| }); |
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
| version: '3' | |
| services: | |
| plex: | |
| image: plexinc/pms-docker:latest | |
| environment: | |
| - PLEX_CLAIM="CLAIM-2PDJ1X9MGSCEISNKTTQZ" | |
| - PLEX_UID=1000 | |
| - PLEX_GID=1000 | |
| volumes: |
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
| { | |
| "stats": [{ | |
| "name": "access_log_file.flushed_by_timer", | |
| "value": 0 | |
| }, { | |
| "name": "access_log_file.reopen_failed", | |
| "value": 0 | |
| }, { | |
| "name": "access_log_file.write_buffered", | |
| "value": 0 |
NewerOlder