├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ └── story.md ├── PULL_REQUEST_TEMPLATE.md ├── ct-install.yaml ├── ct-lint.yaml ├── renovate.json5 └── workflows │ ├── agent-control-e2e.yml │ ├── check-generated-files.yaml │ ├── lint_test_charts.yaml │ ├── nr-k8s-otel-e2e-external.yml │ ├── nr-k8s-otel-e2e.yml │ ├── nr-k8s-otel-post-release.yml │ ├── post-release-nri-bundle.yml │ ├── release.yml │ ├── repolinter.yml │ ├── security.yaml │ └── test-renovate-configuration.yaml ├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── charts ├── agent-control-bootstrap │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── ac-cd-secret.yaml │ │ ├── ac-deployment-secret.yaml │ │ ├── installation-job.yaml │ │ ├── namespace-agents.yaml │ │ ├── rbac-ac.yaml │ │ ├── rbac-cd.yaml │ │ ├── service-account-installation.yaml │ │ ├── service-account-uninstallation.yaml │ │ ├── tests │ │ │ ├── diagnose-install.yaml │ │ │ └── rbac.yaml │ │ └── uninstallation-job.yaml │ ├── tests │ │ ├── ac_deployment_secret_test.yaml │ │ ├── agent-control-cd-disabled_test.yaml │ │ ├── agent-control-cd_test.yaml │ │ └── agent-control-deployment_test.yaml │ └── values.yaml ├── agent-control-cd │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ └── flux-validator.tpl │ ├── tests │ │ └── flux-validator_test.yaml │ └── values.yaml ├── agent-control-deployment │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap-agentcontrol-config.yaml │ │ ├── configmap-subagent-configs.yaml │ │ ├── deployment-agentcontrol.yaml │ │ ├── namespace-agents.yaml │ │ ├── preinstall-job-register-system-identity.yaml │ │ ├── rbac.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml │ ├── tests │ │ ├── auth_secret_test.yaml │ │ ├── configmap_agentcontrol_config_test.yaml │ │ ├── configmap_fleet_configs_test.yaml │ │ ├── deployment_agentcontrol_env_test.yaml │ │ ├── deployment_agentcontrol_securityContext_test.yaml │ │ ├── deployment_agentcontrol_subagent_configs_test.yaml │ │ ├── licenseKey_test.yaml │ │ ├── namespace_agentcontrol_test.yaml │ │ ├── preinstall_job_test.yaml │ │ └── rbac_test.yaml │ └── values.yaml ├── newrelic-infra-operator │ ├── README.md │ └── values.yaml ├── newrelic-infrastructure │ ├── README.md │ └── values.yaml ├── newrelic-k8s-metrics-adapter │ ├── README.md │ └── values.yaml ├── newrelic-logging │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ ├── test-enable-windows-values.yaml │ │ ├── test-lowdatamode-values.yaml │ │ ├── test-override-global-lowdatamode.yaml │ │ ├── test-staging-values.yaml │ │ ├── test-with-empty-global.yaml │ │ └── test-with-empty-values.yaml │ ├── files │ │ └── scripts │ │ │ └── payload.lua │ ├── fluent-bit-and-plugin-metrics-dashboard-template.json │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── configmap-lua.yaml │ │ ├── configmap.yaml │ │ ├── daemonset-windows.yaml │ │ ├── daemonset.yaml │ │ ├── persistentvolume.yaml │ │ ├── podsecuritypolicy.yaml │ │ ├── secret.yaml │ │ └── serviceaccount.yaml │ ├── tests │ │ ├── cri_parser_test.yaml │ │ ├── dns_config_test.yaml │ │ ├── endpoint_region_selection_test.yaml │ │ ├── fluentbit_k8logging_exclude_test.yaml │ │ ├── fluentbit_monitoring_config_test.yaml │ │ ├── fluentbit_persistence_test.yaml │ │ ├── fluentbit_pod_label_test.yaml │ │ ├── fluentbit_sendmetrics_test.yaml │ │ ├── host_network_test.yaml │ │ ├── images_test.yaml │ │ ├── linux_volume_mount_test.yaml │ │ ├── probes_test.yaml │ │ └── rbac_test.yaml │ └── values.yaml ├── newrelic-pixie │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── job.yaml │ │ └── secret.yaml │ ├── tests │ │ ├── configmap.yaml │ │ └── jobs.yaml │ └── values.yaml ├── nr-ebpf-agent │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _affinity.tpl │ │ ├── _helpers.tpl │ │ ├── _naming.tpl │ │ ├── _security-context.tpl │ │ ├── _tls.tpl │ │ ├── _tolerations.tpl │ │ ├── nr-ebpf-agent-daemonset.yaml │ │ ├── nr-ebpf-agent-rbac.yaml │ │ ├── nr-ebpf-agent-service-account.yaml │ │ ├── nr-ebpf-agent-service.yaml │ │ └── secrets.yaml │ └── values.yaml ├── nr-k8s-otel-collector │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── Makefile │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ └── test-values.yaml │ ├── collector.md │ ├── docs │ │ ├── metrics-full.md │ │ └── metrics-lowDataMode.md │ ├── e2e │ │ ├── cluster-apm-metrics.yml │ │ ├── cluster-metrics.yml │ │ ├── e2e-app-values.yml │ │ ├── e2e-cluster-values.yml │ │ ├── e2e-resources.yml │ │ ├── exceptions.yml │ │ └── test-specs.yml │ ├── examples │ │ └── k8s │ │ │ ├── rendered │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── daemonset-configmap.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── deployment-configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── kube-state-metrics │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ ├── secret.yaml │ │ │ ├── service.yaml │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _affinity.tpl │ │ ├── _args.tpl │ │ ├── _config_map.tpl │ │ ├── _endpoint.tpl │ │ ├── _images.tpl │ │ ├── _low_data_mode.tpl │ │ ├── _naming.tpl │ │ ├── _node_selector.tpl │ │ ├── _security_context.tpl │ │ ├── _tolerations.tpl │ │ ├── clusterrole.yaml │ │ ├── clusterrolebinding.yaml │ │ ├── daemonset-configmap.yaml │ │ ├── daemonset.yaml │ │ ├── deployment-configmap.yaml │ │ ├── deployment.yaml │ │ ├── scc.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ ├── tests │ │ ├── affinity_test.yaml │ │ ├── annotations_test.yaml │ │ ├── args_test.yaml │ │ ├── config_map_test.yaml │ │ ├── enabled_flags_test.yaml │ │ ├── env_vars_from_test.yaml │ │ ├── env_vars_test.yaml │ │ ├── gke_auto_pilot_test.yaml │ │ ├── images_test.yaml │ │ ├── ksm_selector_test.yaml │ │ ├── lowdatamode_test.yaml │ │ ├── node_selector_test.yaml │ │ ├── notes_test.yaml │ │ ├── rbac_test.yaml │ │ ├── resources_test.yaml │ │ ├── security_context_test.yaml │ │ ├── serviceaccount_test.yaml │ │ ├── tolerations_test.yaml │ │ └── volume_test.yaml │ └── values.yaml ├── nri-bundle-legacy │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ └── kube-state-metrics-2.13.2.tgz │ ├── ci │ │ └── test-values.yaml │ ├── requirements.lock │ ├── requirements.yaml │ └── values.yaml ├── nri-bundle │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── ci │ │ └── test-values.yaml │ └── values.yaml ├── nri-kube-events │ ├── README.md │ └── values.yaml ├── nri-metadata-injection │ ├── README.md │ └── values.yaml ├── nri-prometheus │ ├── README.md │ └── values.yaml ├── nri-statsd │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── daemonset.yaml │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── pipeline-control-gateway │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── ci │ │ └── test-values.yaml │ ├── templates │ │ ├── _affinity.tpl │ │ ├── _config_map.tpl │ │ ├── _endpoint.tpl │ │ ├── _low_data_mode.tpl │ │ ├── _naming.tpl │ │ ├── _node_selector.tpl │ │ ├── _security_context.tpl │ │ ├── _tolerations.tpl │ │ ├── deployment-configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── synthetics-job-manager │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── charts │ │ ├── node-api-runtime │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── job.yaml │ │ │ └── values.yaml │ │ ├── node-browser-runtime │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── job.yaml │ │ │ └── values.yaml │ │ └── ping-runtime │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ ├── ci │ │ └── default-values.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── config-map.yaml │ │ ├── deployment.yaml │ │ ├── pvc.yaml │ │ └── service.yaml │ └── values.yaml └── synthetics-minion │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── ci │ └── default-values.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── headlessService.yaml │ ├── role.yml │ ├── roleBinding.yml │ ├── serviceaccount.yaml │ └── statefulset.yaml │ └── values.yaml ├── cla.md ├── docs ├── chart_testing.md ├── requirements.md └── review_guidelines.md ├── library ├── CHART-TEMPLATE │ ├── .helmignore │ ├── Chart.lock │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── templates │ │ ├── example-cm-custom-attributes.yaml │ │ ├── example-cm-fedramp.yaml │ │ ├── example-cm-hostnetwork.yaml │ │ ├── example-cm-insightskey.yaml │ │ ├── example-cm-licensekey.yaml │ │ ├── example-cm-lowdatamode.yaml │ │ ├── example-cm-privileged.yaml │ │ ├── example-cm-provider.yaml │ │ ├── example-cm-region.yaml │ │ ├── example-cm-staging.yaml │ │ ├── example-cm-userkey.yaml │ │ ├── example-cm-verbose.yaml │ │ ├── example-insights-secret.yaml │ │ ├── example-license-secret.yaml │ │ ├── example-userkey-secret.yaml │ │ ├── integration-deployment.yaml │ │ ├── job.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── sidecar-agent-configmap.yaml │ │ └── sidecar-deployment.yaml │ ├── tests │ │ ├── cl-affinity_test.yaml │ │ ├── cl-agent_config_test.yaml │ │ ├── cl-cluster_test.yaml │ │ ├── cl-custom_attributes_test.yaml │ │ ├── cl-dnsconfig_test.yaml │ │ ├── cl-fedramp_test.yaml │ │ ├── cl-hostnetwork_cm_test.yaml │ │ ├── cl-hostnetwork_deployment_test.yaml │ │ ├── cl-images_alt_default_registry_test.yaml │ │ ├── cl-images_pull_secrets_test.yaml │ │ ├── cl-images_registry_test.yaml │ │ ├── cl-images_security_context_container_test.yaml │ │ ├── cl-images_security_context_pod_test.yaml │ │ ├── cl-insights_helpers_test.yaml │ │ ├── cl-insights_secret_test.yaml │ │ ├── cl-labels_test.yaml │ │ ├── cl-license_helpers_test.yaml │ │ ├── cl-license_secret_test.yaml │ │ ├── cl-lowdatamode_test.yaml │ │ ├── cl-naming_suffix_test.yaml │ │ ├── cl-naming_test.yaml │ │ ├── cl-nodeselector_test.yaml │ │ ├── cl-pod_labels_test.yaml │ │ ├── cl-priority_class_name_test.yaml │ │ ├── cl-privileged_test.yaml │ │ ├── cl-provider_test.yaml │ │ ├── cl-proxy_test.yaml │ │ ├── cl-region.yaml │ │ ├── cl-serviceaccount_annotations_test.yaml │ │ ├── cl-serviceaccount_create_test.yaml │ │ ├── cl-serviceaccount_name_test.yaml │ │ ├── cl-staging_test.yaml │ │ ├── cl-tolerations_test.yaml │ │ ├── cl-userkey_helpers_test.yaml │ │ ├── cl-userkey_secret_test.yaml │ │ └── cl-verbose_test.yaml │ └── values.yaml └── common-library │ ├── .helmignore │ ├── Chart.yaml │ ├── DEVELOPERS.md │ ├── README.md │ ├── templates │ ├── _affinity.tpl │ ├── _agent-config.tpl │ ├── _cluster.tpl │ ├── _custom-attributes.tpl │ ├── _dnsconfig.tpl │ ├── _fedramp.tpl │ ├── _hostnetwork.tpl │ ├── _images.tpl │ ├── _insights.tpl │ ├── _insights_secret.yaml.tpl │ ├── _labels.tpl │ ├── _license.tpl │ ├── _license_secret.yaml.tpl │ ├── _low-data-mode.tpl │ ├── _naming.tpl │ ├── _nodeselector.tpl │ ├── _priority-class-name.tpl │ ├── _privileged.tpl │ ├── _provider.tpl │ ├── _proxy.tpl │ ├── _region.tpl │ ├── _security-context.tpl │ ├── _serviceaccount.tpl │ ├── _staging.tpl │ ├── _tolerations.tpl │ ├── _userkey.tpl │ ├── _userkey_secret.yaml.tpl │ └── _verbose-log.tpl │ └── values.yaml └── scripts ├── check-bundle-dependencies.sh ├── get-pr-release-notes.sh └── write-release-notes.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/ISSUE_TEMPLATE/story.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ct-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/ct-install.yaml -------------------------------------------------------------------------------- /.github/ct-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/ct-lint.yaml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/agent-control-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/agent-control-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/check-generated-files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/check-generated-files.yaml -------------------------------------------------------------------------------- /.github/workflows/lint_test_charts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/lint_test_charts.yaml -------------------------------------------------------------------------------- /.github/workflows/nr-k8s-otel-e2e-external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/nr-k8s-otel-e2e-external.yml -------------------------------------------------------------------------------- /.github/workflows/nr-k8s-otel-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/nr-k8s-otel-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/nr-k8s-otel-post-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/nr-k8s-otel-post-release.yml -------------------------------------------------------------------------------- /.github/workflows/post-release-nri-bundle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/post-release-nri-bundle.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/repolinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/repolinter.yml -------------------------------------------------------------------------------- /.github/workflows/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/security.yaml -------------------------------------------------------------------------------- /.github/workflows/test-renovate-configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.github/workflows/test-renovate-configuration.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/.helmignore -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/Chart.lock -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/Chart.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/README.md -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/README.md.gotmpl -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/ac-cd-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/ac-cd-secret.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/ac-deployment-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/ac-deployment-secret.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/installation-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/installation-job.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/namespace-agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/namespace-agents.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/rbac-ac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/rbac-ac.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/rbac-cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/rbac-cd.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/service-account-installation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/service-account-installation.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/service-account-uninstallation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/service-account-uninstallation.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/tests/diagnose-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/tests/diagnose-install.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/tests/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/tests/rbac.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/templates/uninstallation-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/templates/uninstallation-job.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/tests/ac_deployment_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/tests/ac_deployment_secret_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/tests/agent-control-cd-disabled_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/tests/agent-control-cd-disabled_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/tests/agent-control-cd_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/tests/agent-control-cd_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/tests/agent-control-deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/tests/agent-control-deployment_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-bootstrap/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-bootstrap/values.yaml -------------------------------------------------------------------------------- /charts/agent-control-cd/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-cd/Chart.lock -------------------------------------------------------------------------------- /charts/agent-control-cd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-cd/Chart.yaml -------------------------------------------------------------------------------- /charts/agent-control-cd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-cd/README.md -------------------------------------------------------------------------------- /charts/agent-control-cd/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-cd/README.md.gotmpl -------------------------------------------------------------------------------- /charts/agent-control-cd/templates/flux-validator.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-cd/templates/flux-validator.tpl -------------------------------------------------------------------------------- /charts/agent-control-cd/tests/flux-validator_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-cd/tests/flux-validator_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-cd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-cd/values.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/.helmignore -------------------------------------------------------------------------------- /charts/agent-control-deployment/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/Chart.lock -------------------------------------------------------------------------------- /charts/agent-control-deployment/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/Chart.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/README.md -------------------------------------------------------------------------------- /charts/agent-control-deployment/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/README.md.gotmpl -------------------------------------------------------------------------------- /charts/agent-control-deployment/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/configmap-agentcontrol-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/configmap-agentcontrol-config.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/configmap-subagent-configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/configmap-subagent-configs.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/deployment-agentcontrol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/deployment-agentcontrol.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/namespace-agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/namespace-agents.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/preinstall-job-register-system-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/preinstall-job-register-system-identity.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/rbac.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/secret.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/auth_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/auth_secret_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/configmap_agentcontrol_config_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/configmap_agentcontrol_config_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/configmap_fleet_configs_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/configmap_fleet_configs_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/deployment_agentcontrol_env_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/deployment_agentcontrol_env_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/deployment_agentcontrol_securityContext_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/deployment_agentcontrol_securityContext_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/deployment_agentcontrol_subagent_configs_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/deployment_agentcontrol_subagent_configs_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/licenseKey_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/licenseKey_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/namespace_agentcontrol_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/namespace_agentcontrol_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/preinstall_job_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/preinstall_job_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/tests/rbac_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/tests/rbac_test.yaml -------------------------------------------------------------------------------- /charts/agent-control-deployment/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/agent-control-deployment/values.yaml -------------------------------------------------------------------------------- /charts/newrelic-infra-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-infra-operator/README.md -------------------------------------------------------------------------------- /charts/newrelic-infra-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-infra-operator/values.yaml -------------------------------------------------------------------------------- /charts/newrelic-infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-infrastructure/README.md -------------------------------------------------------------------------------- /charts/newrelic-infrastructure/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-infrastructure/values.yaml -------------------------------------------------------------------------------- /charts/newrelic-k8s-metrics-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-k8s-metrics-adapter/README.md -------------------------------------------------------------------------------- /charts/newrelic-k8s-metrics-adapter/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-k8s-metrics-adapter/values.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/Chart.lock -------------------------------------------------------------------------------- /charts/newrelic-logging/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/Chart.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/README.md -------------------------------------------------------------------------------- /charts/newrelic-logging/ci/test-enable-windows-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/ci/test-enable-windows-values.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/ci/test-lowdatamode-values.yaml: -------------------------------------------------------------------------------- 1 | lowDataMode: true 2 | -------------------------------------------------------------------------------- /charts/newrelic-logging/ci/test-override-global-lowdatamode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/ci/test-override-global-lowdatamode.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/ci/test-staging-values.yaml: -------------------------------------------------------------------------------- 1 | nrStaging: true 2 | -------------------------------------------------------------------------------- /charts/newrelic-logging/ci/test-with-empty-global.yaml: -------------------------------------------------------------------------------- 1 | global: {} 2 | -------------------------------------------------------------------------------- /charts/newrelic-logging/ci/test-with-empty-values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/newrelic-logging/files/scripts/payload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/files/scripts/payload.lua -------------------------------------------------------------------------------- /charts/newrelic-logging/fluent-bit-and-plugin-metrics-dashboard-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/fluent-bit-and-plugin-metrics-dashboard-template.json -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/configmap-lua.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/configmap-lua.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/daemonset-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/daemonset-windows.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/persistentvolume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/persistentvolume.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/secret.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/cri_parser_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/cri_parser_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/dns_config_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/dns_config_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/endpoint_region_selection_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/endpoint_region_selection_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/fluentbit_k8logging_exclude_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/fluentbit_k8logging_exclude_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/fluentbit_monitoring_config_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/fluentbit_monitoring_config_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/fluentbit_persistence_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/fluentbit_persistence_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/fluentbit_pod_label_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/fluentbit_pod_label_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/fluentbit_sendmetrics_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/fluentbit_sendmetrics_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/host_network_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/host_network_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/images_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/images_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/linux_volume_mount_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/linux_volume_mount_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/probes_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/probes_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/tests/rbac_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/tests/rbac_test.yaml -------------------------------------------------------------------------------- /charts/newrelic-logging/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-logging/values.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/Chart.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/README.md -------------------------------------------------------------------------------- /charts/newrelic-pixie/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/newrelic-pixie/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/newrelic-pixie/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/templates/job.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/templates/secret.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/tests/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/tests/configmap.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/tests/jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/tests/jobs.yaml -------------------------------------------------------------------------------- /charts/newrelic-pixie/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/newrelic-pixie/values.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/.helmignore -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/Chart.lock -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/Chart.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/README.md -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/README.md.gotmpl -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/_affinity.tpl -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/_naming.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/_naming.tpl -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/_security-context.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/_security-context.tpl -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/_tls.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/_tls.tpl -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/_tolerations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/_tolerations.tpl -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/nr-ebpf-agent-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/nr-ebpf-agent-daemonset.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/nr-ebpf-agent-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/nr-ebpf-agent-rbac.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/nr-ebpf-agent-service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/nr-ebpf-agent-service-account.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/nr-ebpf-agent-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/nr-ebpf-agent-service.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/templates/secrets.yaml -------------------------------------------------------------------------------- /charts/nr-ebpf-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-ebpf-agent/values.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/.helmignore -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/Chart.lock -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/Chart.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/Makefile -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/README.md -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/README.md.gotmpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/collector.md -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/docs/metrics-full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/docs/metrics-full.md -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/docs/metrics-lowDataMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/docs/metrics-lowDataMode.md -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/e2e/cluster-apm-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/e2e/cluster-apm-metrics.yml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/e2e/cluster-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/e2e/cluster-metrics.yml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/e2e/e2e-app-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/e2e/e2e-app-values.yml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/e2e/e2e-cluster-values.yml: -------------------------------------------------------------------------------- 1 | kube-state-metrics: 2 | enableResourceQuotaSamples: true -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/e2e/e2e-resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/e2e/e2e-resources.yml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/e2e/exceptions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/e2e/exceptions.yml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/e2e/test-specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/e2e/test-specs.yml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/clusterrole.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/daemonset-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/daemonset-configmap.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/daemonset.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/deployment-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/deployment-configmap.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/deployment.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/deployment.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/role.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/service.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/kube-state-metrics/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/secret.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/service.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/rendered/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/examples/k8s/rendered/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/examples/k8s/values.yaml: -------------------------------------------------------------------------------- 1 | ../../values.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_affinity.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_args.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_args.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_config_map.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_config_map.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_endpoint.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_endpoint.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_images.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_low_data_mode.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_low_data_mode.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_naming.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_naming.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_node_selector.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_node_selector.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_security_context.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_security_context.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/_tolerations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/_tolerations.tpl -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/clusterrole.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/daemonset-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/daemonset-configmap.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/deployment-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/deployment-configmap.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/scc.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/secret.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/service.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/affinity_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/affinity_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/annotations_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/annotations_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/args_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/args_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/config_map_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/config_map_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/enabled_flags_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/enabled_flags_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/env_vars_from_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/env_vars_from_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/env_vars_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/env_vars_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/gke_auto_pilot_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/gke_auto_pilot_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/images_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/images_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/ksm_selector_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/ksm_selector_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/lowdatamode_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/lowdatamode_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/node_selector_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/node_selector_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/notes_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/notes_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/rbac_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/rbac_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/resources_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/resources_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/security_context_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/security_context_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/serviceaccount_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/serviceaccount_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/tolerations_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/tolerations_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/tests/volume_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/tests/volume_test.yaml -------------------------------------------------------------------------------- /charts/nr-k8s-otel-collector/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nr-k8s-otel-collector/values.yaml -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/.helmignore -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/Chart.yaml -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/README.md -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/charts/kube-state-metrics-2.13.2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/charts/kube-state-metrics-2.13.2.tgz -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/requirements.lock -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/requirements.yaml -------------------------------------------------------------------------------- /charts/nri-bundle-legacy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle-legacy/values.yaml -------------------------------------------------------------------------------- /charts/nri-bundle/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle/.helmignore -------------------------------------------------------------------------------- /charts/nri-bundle/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle/Chart.lock -------------------------------------------------------------------------------- /charts/nri-bundle/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle/Chart.yaml -------------------------------------------------------------------------------- /charts/nri-bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle/README.md -------------------------------------------------------------------------------- /charts/nri-bundle/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle/README.md.gotmpl -------------------------------------------------------------------------------- /charts/nri-bundle/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/nri-bundle/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-bundle/values.yaml -------------------------------------------------------------------------------- /charts/nri-kube-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-kube-events/README.md -------------------------------------------------------------------------------- /charts/nri-kube-events/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-kube-events/values.yaml -------------------------------------------------------------------------------- /charts/nri-metadata-injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-metadata-injection/README.md -------------------------------------------------------------------------------- /charts/nri-metadata-injection/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-metadata-injection/values.yaml -------------------------------------------------------------------------------- /charts/nri-prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-prometheus/README.md -------------------------------------------------------------------------------- /charts/nri-prometheus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-prometheus/values.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/.helmignore -------------------------------------------------------------------------------- /charts/nri-statsd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/Chart.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/README.md -------------------------------------------------------------------------------- /charts/nri-statsd/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/nri-statsd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/nri-statsd/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/templates/daemonset.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/templates/service.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/nri-statsd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/nri-statsd/values.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/Chart.lock -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/Chart.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/README.md -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_affinity.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_config_map.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_config_map.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_endpoint.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_endpoint.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_low_data_mode.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_low_data_mode.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_naming.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_naming.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_node_selector.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_node_selector.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_security_context.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_security_context.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/_tolerations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/_tolerations.tpl -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/deployment-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/deployment-configmap.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/secret.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/service.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/pipeline-control-gateway/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/pipeline-control-gateway/values.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/.helmignore -------------------------------------------------------------------------------- /charts/synthetics-job-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/Chart.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/README.md -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-api-runtime/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-api-runtime/.helmignore -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-api-runtime/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-api-runtime/Chart.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-api-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-api-runtime/README.md -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-api-runtime/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-api-runtime/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-api-runtime/templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-api-runtime/templates/job.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-api-runtime/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-api-runtime/values.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-browser-runtime/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-browser-runtime/.helmignore -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-browser-runtime/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-browser-runtime/Chart.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-browser-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-browser-runtime/README.md -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-browser-runtime/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-browser-runtime/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-browser-runtime/templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-browser-runtime/templates/job.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/node-browser-runtime/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/node-browser-runtime/values.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/ping-runtime/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/ping-runtime/.helmignore -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/ping-runtime/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/ping-runtime/Chart.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/ping-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/ping-runtime/README.md -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/ping-runtime/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/ping-runtime/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/ping-runtime/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/ping-runtime/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/ping-runtime/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/ping-runtime/templates/service.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/charts/ping-runtime/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/charts/ping-runtime/values.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/ci/default-values.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/synthetics-job-manager/templates/config-map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/templates/config-map.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/templates/pvc.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/templates/service.yaml -------------------------------------------------------------------------------- /charts/synthetics-job-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-job-manager/values.yaml -------------------------------------------------------------------------------- /charts/synthetics-minion/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/.helmignore -------------------------------------------------------------------------------- /charts/synthetics-minion/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/Chart.yaml -------------------------------------------------------------------------------- /charts/synthetics-minion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/README.md -------------------------------------------------------------------------------- /charts/synthetics-minion/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/ci/default-values.yaml -------------------------------------------------------------------------------- /charts/synthetics-minion/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/synthetics-minion/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/synthetics-minion/templates/headlessService.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/templates/headlessService.yaml -------------------------------------------------------------------------------- /charts/synthetics-minion/templates/role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/templates/role.yml -------------------------------------------------------------------------------- /charts/synthetics-minion/templates/roleBinding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/templates/roleBinding.yml -------------------------------------------------------------------------------- /charts/synthetics-minion/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/synthetics-minion/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/templates/statefulset.yaml -------------------------------------------------------------------------------- /charts/synthetics-minion/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/charts/synthetics-minion/values.yaml -------------------------------------------------------------------------------- /cla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/cla.md -------------------------------------------------------------------------------- /docs/chart_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/docs/chart_testing.md -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /docs/review_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/docs/review_guidelines.md -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/.helmignore -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/Chart.lock -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/Chart.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/README.md -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/README.md.gotmpl -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-custom-attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-custom-attributes.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-fedramp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-fedramp.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-hostnetwork.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-hostnetwork.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-insightskey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-insightskey.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-licensekey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-licensekey.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-lowdatamode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-lowdatamode.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-privileged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-privileged.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-provider.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-region.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-staging.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-userkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-userkey.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-cm-verbose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-cm-verbose.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-insights-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-insights-secret.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-license-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-license-secret.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/example-userkey-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/example-userkey-secret.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/integration-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/integration-deployment.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/job.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/service.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/sidecar-agent-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/sidecar-agent-configmap.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/templates/sidecar-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/templates/sidecar-deployment.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-affinity_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-affinity_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-agent_config_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-agent_config_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-cluster_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-cluster_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-custom_attributes_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-custom_attributes_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-dnsconfig_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-dnsconfig_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-fedramp_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-fedramp_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-hostnetwork_cm_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-hostnetwork_cm_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-hostnetwork_deployment_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-hostnetwork_deployment_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-images_alt_default_registry_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-images_alt_default_registry_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-images_pull_secrets_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-images_pull_secrets_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-images_registry_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-images_registry_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-images_security_context_container_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-images_security_context_container_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-images_security_context_pod_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-images_security_context_pod_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-insights_helpers_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-insights_helpers_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-insights_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-insights_secret_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-labels_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-labels_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-license_helpers_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-license_helpers_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-license_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-license_secret_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-lowdatamode_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-lowdatamode_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-naming_suffix_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-naming_suffix_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-naming_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-naming_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-nodeselector_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-nodeselector_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-pod_labels_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-pod_labels_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-priority_class_name_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-priority_class_name_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-privileged_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-privileged_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-provider_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-provider_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-proxy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-proxy_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-region.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-serviceaccount_annotations_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-serviceaccount_annotations_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-serviceaccount_create_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-serviceaccount_create_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-serviceaccount_name_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-serviceaccount_name_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-staging_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-staging_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-tolerations_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-tolerations_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-userkey_helpers_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-userkey_helpers_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-userkey_secret_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-userkey_secret_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/tests/cl-verbose_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/tests/cl-verbose_test.yaml -------------------------------------------------------------------------------- /library/CHART-TEMPLATE/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/CHART-TEMPLATE/values.yaml -------------------------------------------------------------------------------- /library/common-library/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/.helmignore -------------------------------------------------------------------------------- /library/common-library/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/Chart.yaml -------------------------------------------------------------------------------- /library/common-library/DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/DEVELOPERS.md -------------------------------------------------------------------------------- /library/common-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/README.md -------------------------------------------------------------------------------- /library/common-library/templates/_affinity.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_affinity.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_agent-config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_agent-config.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_cluster.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_cluster.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_custom-attributes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_custom-attributes.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_dnsconfig.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_dnsconfig.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_fedramp.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_fedramp.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_hostnetwork.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_hostnetwork.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_images.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_images.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_insights.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_insights.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_insights_secret.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_insights_secret.yaml.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_labels.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_labels.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_license.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_license.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_license_secret.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_license_secret.yaml.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_low-data-mode.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_low-data-mode.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_naming.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_naming.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_nodeselector.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_nodeselector.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_priority-class-name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_priority-class-name.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_privileged.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_privileged.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_provider.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_provider.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_proxy.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_proxy.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_region.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_region.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_security-context.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_security-context.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_serviceaccount.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_serviceaccount.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_staging.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_staging.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_tolerations.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_tolerations.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_userkey.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_userkey.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_userkey_secret.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_userkey_secret.yaml.tpl -------------------------------------------------------------------------------- /library/common-library/templates/_verbose-log.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/templates/_verbose-log.tpl -------------------------------------------------------------------------------- /library/common-library/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/library/common-library/values.yaml -------------------------------------------------------------------------------- /scripts/check-bundle-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/scripts/check-bundle-dependencies.sh -------------------------------------------------------------------------------- /scripts/get-pr-release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/scripts/get-pr-release-notes.sh -------------------------------------------------------------------------------- /scripts/write-release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newrelic/helm-charts/HEAD/scripts/write-release-notes.sh --------------------------------------------------------------------------------