github.com/grafana/tanka@v0.26.1-0.20240506093700-c22cfc35c21a/docs/doczrc.js (about)

     1  export default {
     2    title: "Tanka",
     3    description: "Flexible, reusable and concise configuration for Kubernetes",
     4  
     5    public: "/static",
     6    ignore: ["design/**", ".vscodeext/**"],
     7    editBranch: "main",
     8  
     9    themeConfig: {
    10      showDarkModeSwitch: false,
    11    },
    12  
    13    menu: [
    14      "Introduction",
    15      "Installation",
    16      {
    17        name: "Tutorial",
    18        menu: [
    19          "Overview",
    20          "Refresher on deploying",
    21          "Using Jsonnet",
    22          "Parameterizing",
    23          "Abstraction",
    24          "Kubernetes library",
    25          "Environments",
    26        ],
    27      },
    28      {
    29        name: "Writing Jsonnet",
    30        menu: [
    31          "Syntax overview",
    32          "main.jsonnet",
    33          // "The global object",
    34          "Native Functions",
    35        ],
    36      },
    37      {
    38        name: "Libraries",
    39        menu: [
    40          "Import paths",
    41          // "Using libraries",
    42          // "Creating and structure",
    43          "Installing and publishing",
    44          "Overriding",
    45        ],
    46      },
    47      {
    48        name: "Advanced features",
    49        menu: [
    50          "Garbage collection",
    51          "Helm support",
    52          "Kustomize support",
    53          "Output filtering",
    54          "Exporting as YAML",
    55        ],
    56      },
    57      {
    58        name: "References",
    59        menu: [
    60          "Configuration Reference",
    61          "Directory structure",
    62          "Environment variables",
    63          "Command-line completion",
    64          "Diff strategies",
    65          "Namespaces",
    66        ],
    67      },
    68  
    69      "Frequently asked questions",
    70      "Known issues",
    71    ],
    72  }