├── .editorconfig ├── .github ├── .kodiak.toml ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── all-examples.yaml │ ├── docs.yaml │ ├── install-frsca.yaml │ └── scorecards.yml ├── .gitignore ├── .markdownlint.yml ├── .prettierignore ├── .yamllint.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── cspell.config.yaml ├── cue.mod ├── gen │ ├── github.com │ │ └── tektoncd │ │ │ ├── pipeline │ │ │ └── pkg │ │ │ │ ├── apis │ │ │ │ ├── config │ │ │ │ │ ├── default_go_gen.cue │ │ │ │ │ ├── events_go_gen.cue │ │ │ │ │ ├── feature_flags_go_gen.cue │ │ │ │ │ ├── metrics_go_gen.cue │ │ │ │ │ ├── spire_config_go_gen.cue │ │ │ │ │ ├── store_go_gen.cue │ │ │ │ │ └── tracing_go_gen.cue │ │ │ │ ├── pipeline │ │ │ │ │ ├── pod │ │ │ │ │ │ ├── affinity_assitant_template_go_gen.cue │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ └── template_go_gen.cue │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── artifact_types_go_gen.cue │ │ │ │ │ │ ├── container_types_go_gen.cue │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── matrix_types_go_gen.cue │ │ │ │ │ │ ├── param_types_go_gen.cue │ │ │ │ │ │ ├── pipeline_types_go_gen.cue │ │ │ │ │ │ ├── pipeline_validation_go_gen.cue │ │ │ │ │ │ ├── pipelineref_types_go_gen.cue │ │ │ │ │ │ ├── pipelinerun_types_go_gen.cue │ │ │ │ │ │ ├── provenance_go_gen.cue │ │ │ │ │ │ ├── resolver_types_go_gen.cue │ │ │ │ │ │ ├── result_types_go_gen.cue │ │ │ │ │ │ ├── resultref_go_gen.cue │ │ │ │ │ │ ├── task_types_go_gen.cue │ │ │ │ │ │ ├── task_validation_go_gen.cue │ │ │ │ │ │ ├── taskref_types_go_gen.cue │ │ │ │ │ │ ├── taskrun_defaults_go_gen.cue │ │ │ │ │ │ ├── taskrun_types_go_gen.cue │ │ │ │ │ │ ├── when_types_go_gen.cue │ │ │ │ │ │ └── workspace_types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── artifact_types_go_gen.cue │ │ │ │ │ │ ├── cluster_task_types_go_gen.cue │ │ │ │ │ │ ├── container_types_go_gen.cue │ │ │ │ │ │ ├── conversion_error_go_gen.cue │ │ │ │ │ │ ├── customrun_types_go_gen.cue │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── matrix_types_go_gen.cue │ │ │ │ │ │ ├── param_types_go_gen.cue │ │ │ │ │ │ ├── pipeline_interface_go_gen.cue │ │ │ │ │ │ ├── pipeline_types_go_gen.cue │ │ │ │ │ │ ├── pipeline_validation_go_gen.cue │ │ │ │ │ │ ├── pipelineref_types_go_gen.cue │ │ │ │ │ │ ├── pipelinerun_types_go_gen.cue │ │ │ │ │ │ ├── provenance_go_gen.cue │ │ │ │ │ │ ├── resolver_types_go_gen.cue │ │ │ │ │ │ ├── resource_types_go_gen.cue │ │ │ │ │ │ ├── result_types_go_gen.cue │ │ │ │ │ │ ├── resultref_go_gen.cue │ │ │ │ │ │ ├── run_interface_go_gen.cue │ │ │ │ │ │ ├── stepaction_types_go_gen.cue │ │ │ │ │ │ ├── task_conversion_go_gen.cue │ │ │ │ │ │ ├── task_interface_go_gen.cue │ │ │ │ │ │ ├── task_types_go_gen.cue │ │ │ │ │ │ ├── task_validation_go_gen.cue │ │ │ │ │ │ ├── taskref_types_go_gen.cue │ │ │ │ │ │ ├── taskrun_conversion_go_gen.cue │ │ │ │ │ │ ├── taskrun_defaults_go_gen.cue │ │ │ │ │ │ ├── taskrun_types_go_gen.cue │ │ │ │ │ │ ├── when_types_go_gen.cue │ │ │ │ │ │ └── workspace_types_go_gen.cue │ │ │ │ ├── resource │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ └── pipeline_resource_types_go_gen.cue │ │ │ │ └── run │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── customrunstatus_types_go_gen.cue │ │ │ │ │ └── doc_go_gen.cue │ │ │ │ ├── result │ │ │ │ └── result_go_gen.cue │ │ │ │ └── spire │ │ │ │ └── config │ │ │ │ └── config_go_gen.cue │ │ │ └── triggers │ │ │ └── pkg │ │ │ └── apis │ │ │ └── triggers │ │ │ └── v1beta1 │ │ │ ├── cluster_trigger_binding_types_go_gen.cue │ │ │ ├── doc_go_gen.cue │ │ │ ├── event_listener_types_go_gen.cue │ │ │ ├── interceptor_types_go_gen.cue │ │ │ ├── param_go_gen.cue │ │ │ ├── trigger_binding_interface_go_gen.cue │ │ │ ├── trigger_binding_types_go_gen.cue │ │ │ ├── trigger_defaults_go_gen.cue │ │ │ ├── trigger_template_types_go_gen.cue │ │ │ └── trigger_types_go_gen.cue │ ├── google.golang.org │ │ └── grpc │ │ │ └── codes │ │ │ └── codes_go_gen.cue │ ├── k8s.io │ │ ├── api │ │ │ ├── batch │ │ │ │ └── v1 │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ └── types_go_gen.cue │ │ │ └── core │ │ │ │ └── v1 │ │ │ │ ├── annotation_key_constants_go_gen.cue │ │ │ │ ├── doc_go_gen.cue │ │ │ │ ├── register_go_gen.cue │ │ │ │ ├── types_go_gen.cue │ │ │ │ ├── well_known_labels_go_gen.cue │ │ │ │ └── well_known_taints_go_gen.cue │ │ ├── apiextensions-apiserver │ │ │ └── pkg │ │ │ │ └── apis │ │ │ │ └── apiextensions │ │ │ │ └── v1 │ │ │ │ ├── doc_go_gen.cue │ │ │ │ ├── register_go_gen.cue │ │ │ │ ├── types_go_gen.cue │ │ │ │ └── types_jsonschema_go_gen.cue │ │ └── apimachinery │ │ │ └── pkg │ │ │ ├── api │ │ │ └── resource │ │ │ │ ├── amount_go_gen.cue │ │ │ │ ├── math_go_gen.cue │ │ │ │ ├── quantity_go_gen.cue │ │ │ │ └── suffix_go_gen.cue │ │ │ ├── apis │ │ │ └── meta │ │ │ │ └── v1 │ │ │ │ ├── duration_go_gen.cue │ │ │ │ ├── group_version_go_gen.cue │ │ │ │ ├── meta_go_gen.cue │ │ │ │ ├── micro_time_go_gen.cue │ │ │ │ ├── register_go_gen.cue │ │ │ │ ├── time_go_gen.cue │ │ │ │ ├── time_proto_go_gen.cue │ │ │ │ ├── types_go_gen.cue │ │ │ │ └── watch_go_gen.cue │ │ │ ├── runtime │ │ │ ├── allocator_go_gen.cue │ │ │ ├── codec_go_gen.cue │ │ │ ├── conversion_go_gen.cue │ │ │ ├── converter_go_gen.cue │ │ │ ├── doc_go_gen.cue │ │ │ ├── embedded_go_gen.cue │ │ │ ├── helper_go_gen.cue │ │ │ ├── interfaces_go_gen.cue │ │ │ ├── negotiate_go_gen.cue │ │ │ ├── splice_go_gen.cue │ │ │ ├── swagger_doc_generator_go_gen.cue │ │ │ ├── types_go_gen.cue │ │ │ └── types_proto_go_gen.cue │ │ │ ├── selection │ │ │ └── operator_go_gen.cue │ │ │ ├── types │ │ │ ├── doc_go_gen.cue │ │ │ ├── namespacedname_go_gen.cue │ │ │ ├── nodename_go_gen.cue │ │ │ ├── patch_go_gen.cue │ │ │ └── uid_go_gen.cue │ │ │ ├── util │ │ │ └── intstr │ │ │ │ └── intstr_go_gen.cue │ │ │ └── watch │ │ │ ├── doc_go_gen.cue │ │ │ ├── filter_go_gen.cue │ │ │ ├── mux_go_gen.cue │ │ │ ├── streamwatcher_go_gen.cue │ │ │ └── watch_go_gen.cue │ └── knative.dev │ │ └── pkg │ │ ├── apis │ │ ├── condition_set_go_gen.cue │ │ ├── condition_types_go_gen.cue │ │ ├── contexts_go_gen.cue │ │ ├── deprecated_go_gen.cue │ │ ├── doc_go_gen.cue │ │ ├── duck │ │ │ ├── v1 │ │ │ │ ├── addressable_types_go_gen.cue │ │ │ │ ├── auth_types_go_gen.cue │ │ │ │ ├── binding_types_go_gen.cue │ │ │ │ ├── cronjob_defaults_go_gen.cue │ │ │ │ ├── cronjob_types_go_gen.cue │ │ │ │ ├── cronjob_validation_go_gen.cue │ │ │ │ ├── destination_go_gen.cue │ │ │ │ ├── doc_go_gen.cue │ │ │ │ ├── knative_reference_go_gen.cue │ │ │ │ ├── kresource_type_go_gen.cue │ │ │ │ ├── podspec_defaults_go_gen.cue │ │ │ │ ├── podspec_types_go_gen.cue │ │ │ │ ├── podspec_validation_go_gen.cue │ │ │ │ ├── source_types_go_gen.cue │ │ │ │ └── status_types_go_gen.cue │ │ │ └── v1beta1 │ │ │ │ ├── addressable_types_go_gen.cue │ │ │ │ ├── binding_types_go_gen.cue │ │ │ │ ├── destination_go_gen.cue │ │ │ │ ├── doc_go_gen.cue │ │ │ │ ├── source_types_go_gen.cue │ │ │ │ └── status_types_go_gen.cue │ │ ├── field_error_go_gen.cue │ │ ├── interfaces_go_gen.cue │ │ ├── metadata_validation_go_gen.cue │ │ ├── url_go_gen.cue │ │ └── volatile_time_go_gen.cue │ │ └── tracker │ │ ├── doc_go_gen.cue │ │ └── interface_go_gen.cue └── module.cue ├── dependencies.go ├── docs ├── README.md ├── bootstrap.sh ├── config.toml ├── content │ ├── _index.md │ └── docs │ │ ├── _index.md │ │ ├── contributing │ │ ├── _index.md │ │ └── how-to-contribute.md │ │ ├── getting-started │ │ ├── _index.md │ │ ├── architecture.md │ │ ├── frsca_mascot-color.png │ │ ├── introduction.md │ │ └── quick-start.md │ │ ├── help │ │ ├── _index.md │ │ ├── faq.md │ │ └── using-cue.md │ │ └── slsa │ │ ├── _index.md │ │ └── frsca-slsa.md ├── diagrams │ ├── frsca.url │ ├── workspace.dsl │ └── workspace.json ├── serve.sh ├── static │ └── img │ │ ├── frsca.png │ │ └── frsca_mascot-color.png ├── templates │ ├── docs │ │ └── page.html │ └── shortcodes │ │ └── markdown.html └── themes │ └── adidoks │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── config.toml │ ├── config.toml.example │ ├── content │ ├── _index.md │ ├── authors │ │ ├── _index.md │ │ └── aaran-xu.md │ ├── blog │ │ ├── _index.md │ │ ├── hello-world.md │ │ ├── markdown-syntax.md │ │ ├── math-typesetting.md │ │ ├── placeholder-text.md │ │ └── say-hello-to-zola-doks.md │ ├── docs │ │ ├── _index.md │ │ ├── contributing │ │ │ ├── _index.md │ │ │ ├── code-of-conduct.md │ │ │ └── how-to-contribute.md │ │ ├── getting-started │ │ │ ├── _index.md │ │ │ ├── introduction.md │ │ │ └── quick-start.md │ │ └── help │ │ │ ├── _index.md │ │ │ └── faq.md │ └── privacy-policy │ │ └── _index.md │ ├── netlify.toml │ ├── sass │ ├── _custom.scss │ ├── bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── js │ │ │ ├── dist │ │ │ │ ├── alert.js │ │ │ │ ├── alert.js.map │ │ │ │ ├── base-component.js │ │ │ │ ├── base-component.js.map │ │ │ │ ├── button.js │ │ │ │ ├── button.js.map │ │ │ │ ├── carousel.js │ │ │ │ ├── carousel.js.map │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.js.map │ │ │ │ ├── dom │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.js.map │ │ │ │ │ ├── event-handler.js │ │ │ │ │ ├── event-handler.js.map │ │ │ │ │ ├── manipulator.js │ │ │ │ │ ├── manipulator.js.map │ │ │ │ │ ├── selector-engine.js │ │ │ │ │ └── selector-engine.js.map │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.js.map │ │ │ │ ├── modal.js │ │ │ │ ├── modal.js.map │ │ │ │ ├── offcanvas.js │ │ │ │ ├── offcanvas.js.map │ │ │ │ ├── popover.js │ │ │ │ ├── popover.js.map │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.js.map │ │ │ │ ├── tab.js │ │ │ │ ├── tab.js.map │ │ │ │ ├── toast.js │ │ │ │ ├── toast.js.map │ │ │ │ ├── tooltip.js │ │ │ │ └── tooltip.js.map │ │ │ └── src │ │ │ │ ├── alert.js │ │ │ │ ├── base-component.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dom │ │ │ │ ├── data.js │ │ │ │ ├── event-handler.js │ │ │ │ ├── manipulator.js │ │ │ │ └── selector-engine.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── offcanvas.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── toast.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util │ │ │ │ ├── index.js │ │ │ │ ├── sanitizer.js │ │ │ │ └── scrollbar.js │ │ ├── package.json │ │ └── scss │ │ │ ├── _accordion.scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _containers.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _helpers.scss │ │ │ ├── _images.scss │ │ │ ├── _list-group.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _offcanvas.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap-utilities.scss │ │ │ ├── bootstrap.scss │ │ │ ├── forms │ │ │ ├── _floating-labels.scss │ │ │ ├── _form-check.scss │ │ │ ├── _form-control.scss │ │ │ ├── _form-range.scss │ │ │ ├── _form-select.scss │ │ │ ├── _form-text.scss │ │ │ ├── _input-group.scss │ │ │ ├── _labels.scss │ │ │ └── _validation.scss │ │ │ ├── helpers │ │ │ ├── _clearfix.scss │ │ │ ├── _colored-links.scss │ │ │ ├── _position.scss │ │ │ ├── _ratio.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text-truncation.scss │ │ │ └── _visually-hidden.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _container.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _table-variants.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ ├── _utilities.scss │ │ │ └── _visually-hidden.scss │ │ │ ├── utilities │ │ │ └── _api.scss │ │ │ └── vendor │ │ │ └── _rfs.scss │ ├── common │ │ ├── _dark.scss │ │ ├── _fonts.scss │ │ ├── _global.scss │ │ └── _variables.scss │ ├── components │ │ ├── _alerts.scss │ │ ├── _buttons.scss │ │ ├── _code.scss │ │ ├── _comments.scss │ │ ├── _doks.scss │ │ ├── _footnote.scss │ │ ├── _forms.scss │ │ ├── _images.scss │ │ ├── _search.scss │ │ ├── _syntax.scss │ │ └── _tables.scss │ ├── layouts │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _pages.scss │ │ ├── _posts.scss │ │ └── _sidebar.scss │ └── main.scss │ ├── screenshot.png │ ├── static │ ├── _headers │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── doks.png │ ├── doks.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ │ └── vendor │ │ │ └── jost │ │ │ ├── jost-v4-latin-500.woff │ │ │ ├── jost-v4-latin-500.woff2 │ │ │ ├── jost-v4-latin-500italic.woff │ │ │ ├── jost-v4-latin-500italic.woff2 │ │ │ ├── jost-v4-latin-700.woff │ │ │ ├── jost-v4-latin-700.woff2 │ │ │ ├── jost-v4-latin-700italic.woff │ │ │ ├── jost-v4-latin-700italic.woff2 │ │ │ ├── jost-v4-latin-italic.woff │ │ │ ├── jost-v4-latin-italic.woff2 │ │ │ ├── jost-v4-latin-regular.woff │ │ │ └── jost-v4-latin-regular.woff2 │ ├── index.js │ ├── js │ │ ├── main.js │ │ └── search.js │ ├── logo-doks.png │ ├── plugins │ │ └── elasticlunr.min.js │ └── site.webmanifest │ ├── templates │ ├── 404.html │ ├── authors │ │ ├── list.html │ │ └── single.html │ ├── base.html │ ├── blog │ │ ├── page.html │ │ └── section.html │ ├── docs │ │ ├── page.html │ │ └── section.html │ ├── index.html │ ├── macros │ │ ├── docs-edit-page.html │ │ ├── docs-navigation.html │ │ ├── docs-sidebar.html │ │ ├── docs-toc.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── javascript.html │ │ ├── math.html │ │ ├── page-publish-metadata.html │ │ └── section-navigation.html │ ├── page.html │ ├── robots.txt │ └── section.html │ └── theme.toml ├── examples ├── buildpacks │ ├── README.md │ ├── buildpacks-run.sh │ ├── buildpacks-setup.sh │ ├── buildpacks.cue │ └── dual-storage-backend.md ├── cosign │ ├── README.md │ ├── cosign.cue │ ├── cosign.sh │ ├── cyclonedx.sbom │ ├── pipeline-ko.yaml │ ├── spdx.sbom │ └── task-ko.yaml ├── examples.cue ├── go-pipeline │ ├── README.md │ ├── go-pipeline-run.sh │ ├── go-pipeline-setup.sh │ └── go-pipeline.cue ├── gradle-pipeline │ ├── README.md │ ├── gradle-pipeline-run.sh │ ├── gradle-pipeline-setup.sh │ └── gradle-pipeline.cue ├── ibm-tutorial │ ├── README.md │ ├── ibm-tutorial-run.sh │ ├── ibm-tutorial-setup.sh │ └── ibm-tutorial.cue ├── maven │ ├── README.md │ ├── maven-pkg.cue │ ├── maven-run.sh │ └── maven-setup.sh └── sample-pipeline │ ├── README.md │ ├── sample-pipeline-run.sh │ ├── sample-pipeline-setup.sh │ └── sample-pipeline.cue ├── frsca-words.txt ├── frsca.cue ├── frsca_mascot-color.png ├── frsca_tool.cue ├── go.mod ├── go.sum ├── platform ├── .gitignore ├── 00-kubernetes-minikube-setup.sh ├── 02-setup-certs.sh ├── 04-registry-setup.sh ├── 05-registry-proxy.sh ├── 06-gitea-install.sh ├── 10-tekton-pipelines-install.sh ├── 11-tekton-pipeline-setup.sh ├── 12-tekton-chains-install.sh ├── 13-tekton-chains-setup.sh ├── 14-tekton-tasks.sh ├── 20-spire-install.sh ├── 21-spire-setup.sh ├── 25-vault-install.sh ├── 26-vault-setup.sh ├── 30-kyverno-install.sh ├── 31-kyverno-setup.sh ├── 35-opa-gatekeeper-setup.sh ├── 40-efk-stack-setup │ ├── 40-efk-stack-setup.sh │ └── README.md ├── 50-example-mirror.sh ├── components │ ├── cert-manager │ │ ├── ca.yaml │ │ ├── gitea.yaml │ │ ├── registry.yaml │ │ └── spire.yaml │ ├── elastic │ │ └── values.yaml │ ├── gitea │ │ └── values.yaml │ ├── kyverno │ │ └── patch_container_args.json │ ├── registry │ │ └── registry.yaml │ ├── spire │ │ └── values.yaml │ ├── tekton │ │ ├── chains │ │ │ ├── patch_ca_certs.json │ │ │ ├── patch_config_dual_backend.yaml │ │ │ ├── patch_config_kms.yaml │ │ │ ├── patch_config_oci.yaml │ │ │ └── patch_spire.json │ │ ├── pipelines │ │ │ └── patch_ca_certs.json │ │ ├── tasks │ │ │ ├── patch_buildpacks.yml │ │ │ ├── patch_git_clone.yml │ │ │ ├── patch_gradle.yml │ │ │ ├── patch_kaniko.yml │ │ │ └── patch_trivy.yml │ │ └── triggers │ │ │ └── rbac.yaml │ └── vault │ │ └── values.yaml ├── vault │ └── .gitignore ├── vendor │ ├── cert-manager │ │ └── release │ │ │ └── cert-manager.yaml │ ├── elastic │ │ └── chart │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── config │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── watcher_encryption_key │ │ │ ├── default │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── rolling_upgrade.sh │ │ │ │ └── test │ │ │ │ │ └── goss.yaml │ │ │ ├── docker-for-mac │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── values.yaml │ │ │ ├── kubernetes-kind │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── values-local-path.yaml │ │ │ │ └── values.yaml │ │ │ ├── microk8s │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── values.yaml │ │ │ ├── migration │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── client.yaml │ │ │ │ ├── data.yaml │ │ │ │ └── master.yaml │ │ │ ├── minikube │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── values.yaml │ │ │ ├── multi │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── client.yaml │ │ │ │ ├── data.yaml │ │ │ │ ├── master.yaml │ │ │ │ └── test │ │ │ │ │ └── goss.yaml │ │ │ ├── networkpolicy │ │ │ │ ├── Makefile │ │ │ │ └── values.yaml │ │ │ ├── openshift │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ ├── security │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ └── upgrade │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── scripts │ │ │ │ └── upgrade.sh │ │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── poddisruptionbudget.yaml │ │ │ ├── podsecuritypolicy.yaml │ │ │ ├── role.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── statefulset.yaml │ │ │ └── test │ │ │ │ └── test-elasticsearch-health.yaml │ │ │ └── values.yaml │ ├── fluent │ │ └── chart │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── ci │ │ │ └── ci-values.yaml │ │ │ ├── dashboards │ │ │ └── fluent-bit.json │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── _pod.tpl │ │ │ ├── clusterrole.yaml │ │ │ ├── clusterrolebinding.yaml │ │ │ ├── configmap-dashboards.yaml │ │ │ ├── configmap-luascripts.yaml │ │ │ ├── configmap.yaml │ │ │ ├── daemonset.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── pdb.yaml │ │ │ ├── prometheusrule.yaml │ │ │ ├── psp.yaml │ │ │ ├── scc.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── servicemonitor.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ ├── gatekeeper │ │ └── chart │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── crds │ │ │ ├── assign-customresourcedefinition.yaml │ │ │ ├── assignmetadata-customresourcedefinition.yaml │ │ │ ├── config-customresourcedefinition.yaml │ │ │ ├── constraintpodstatus-customresourcedefinition.yaml │ │ │ ├── constrainttemplate-customresourcedefinition.yaml │ │ │ ├── constrainttemplatepodstatus-customresourcedefinition.yaml │ │ │ └── mutatorpodstatus-customresourcedefinition.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── gatekeeper-admin-podsecuritypolicy.yaml │ │ │ ├── gatekeeper-admin-serviceaccount.yaml │ │ │ ├── gatekeeper-audit-deployment.yaml │ │ │ ├── gatekeeper-controller-manager-deployment.yaml │ │ │ ├── gatekeeper-controller-manager-poddisruptionbudget.yaml │ │ │ ├── gatekeeper-critical-pods-resourcequota.yaml │ │ │ ├── gatekeeper-manager-role-clusterrole.yaml │ │ │ ├── gatekeeper-manager-role-role.yaml │ │ │ ├── gatekeeper-manager-rolebinding-clusterrolebinding.yaml │ │ │ ├── gatekeeper-manager-rolebinding-rolebinding.yaml │ │ │ ├── gatekeeper-mutating-webhook-configuration-mutatingwebhookconfiguration.yaml │ │ │ ├── gatekeeper-validating-webhook-configuration-validatingwebhookconfiguration.yaml │ │ │ ├── gatekeeper-webhook-server-cert-secret.yaml │ │ │ ├── gatekeeper-webhook-service-service.yaml │ │ │ ├── namespace-post-install.yaml │ │ │ └── upgrade-crds-hook.yaml │ │ │ └── values.yaml │ ├── gitea │ │ └── chart │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── charts │ │ │ ├── postgresql-ha │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ └── common │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ │ └── pvc.yaml │ │ │ │ │ ├── extra-list.yaml │ │ │ │ │ ├── ldap-secrets.yaml │ │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ │ ├── pgpool │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── custom-users-secrets.yaml │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ ├── initdb-scripts-configmap.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── postgresql │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ │ ├── initdb-scripts-configmap.yaml │ │ │ │ │ │ ├── metrics-service.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ │ ├── service-headless.yaml │ │ │ │ │ │ ├── service-witness.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ ├── witness-pdb.yaml │ │ │ │ │ │ └── witness-statefulset.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tls-secrets.yaml │ │ │ │ └── values.yaml │ │ │ ├── postgresql │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ └── common │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ └── pvc.yaml │ │ │ │ │ ├── extra-list.yaml │ │ │ │ │ ├── primary │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ │ ├── initialization-configmap.yaml │ │ │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── preinitialization-configmap.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ │ └── svc.yaml │ │ │ │ │ ├── prometheusrule.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── read │ │ │ │ │ │ ├── extended-configmap.yaml │ │ │ │ │ │ ├── metrics-configmap.yaml │ │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ │ ├── svc-headless.yaml │ │ │ │ │ │ └── svc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── secrets.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── tls-secrets.yaml │ │ │ │ │ └── update-password │ │ │ │ │ │ ├── job.yaml │ │ │ │ │ │ ├── new-secret.yaml │ │ │ │ │ │ └── previous-secret.yaml │ │ │ │ ├── values.schema.json │ │ │ │ └── values.yaml │ │ │ ├── valkey-cluster │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ │ └── common │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ │ ├── _images.tpl │ │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ │ ├── _names.tpl │ │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ │ └── validations │ │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── extra-list.yaml │ │ │ │ │ ├── headless-svc.yaml │ │ │ │ │ ├── metrics-prometheus.yaml │ │ │ │ │ ├── metrics-svc.yaml │ │ │ │ │ ├── networkpolicy.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── prometheusrule.yaml │ │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── svc-cluster-external-access.yaml │ │ │ │ │ ├── tls-secret.yaml │ │ │ │ │ ├── update-cluster.yaml │ │ │ │ │ ├── valkey-role.yaml │ │ │ │ │ ├── valkey-rolebinding.yaml │ │ │ │ │ ├── valkey-serviceaccount.yaml │ │ │ │ │ ├── valkey-statefulset.yaml │ │ │ │ │ └── valkey-svc.yaml │ │ │ │ └── values.yaml │ │ │ └── valkey │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.lock │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── charts │ │ │ │ └── common │ │ │ │ │ ├── .helmignore │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── templates │ │ │ │ │ ├── _affinities.tpl │ │ │ │ │ ├── _capabilities.tpl │ │ │ │ │ ├── _compatibility.tpl │ │ │ │ │ ├── _errors.tpl │ │ │ │ │ ├── _images.tpl │ │ │ │ │ ├── _ingress.tpl │ │ │ │ │ ├── _labels.tpl │ │ │ │ │ ├── _names.tpl │ │ │ │ │ ├── _resources.tpl │ │ │ │ │ ├── _secrets.tpl │ │ │ │ │ ├── _storage.tpl │ │ │ │ │ ├── _tplvalues.tpl │ │ │ │ │ ├── _utils.tpl │ │ │ │ │ ├── _warnings.tpl │ │ │ │ │ └── validations │ │ │ │ │ │ ├── _cassandra.tpl │ │ │ │ │ │ ├── _mariadb.tpl │ │ │ │ │ │ ├── _mongodb.tpl │ │ │ │ │ │ ├── _mysql.tpl │ │ │ │ │ │ ├── _postgresql.tpl │ │ │ │ │ │ ├── _redis.tpl │ │ │ │ │ │ └── _validations.tpl │ │ │ │ │ └── values.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── headless-svc.yaml │ │ │ │ ├── health-configmap.yaml │ │ │ │ ├── metrics-svc.yaml │ │ │ │ ├── networkpolicy.yaml │ │ │ │ ├── podmonitor.yaml │ │ │ │ ├── primary │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── psp.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── prometheusrule.yaml │ │ │ │ ├── replicas │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── vpa.yaml │ │ │ │ ├── role.yaml │ │ │ │ ├── rolebinding.yaml │ │ │ │ ├── scripts-configmap.yaml │ │ │ │ ├── secret-svcbind.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── sentinel │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── node-services.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── ports-configmap.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── vpa.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── tls-secret.yaml │ │ │ │ ├── values.schema.json │ │ │ │ └── values.yaml │ │ │ ├── docs │ │ │ └── ha-setup.md │ │ │ ├── install-man-page.sh │ │ │ ├── scripts │ │ │ ├── act_runner │ │ │ │ └── token.sh │ │ │ └── init-containers │ │ │ │ ├── config │ │ │ │ └── config_environment.sh │ │ │ │ └── init │ │ │ │ └── configure_gpg_environment.sh │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── gitea │ │ │ │ ├── check-actions-not-present.yaml │ │ │ │ ├── config.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── deprecation.yaml │ │ │ │ ├── extra-list.yaml │ │ │ │ ├── gpg-secret.yaml │ │ │ │ ├── http-svc.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── init.yaml │ │ │ │ ├── metrics-secret.yaml │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ ├── pvc.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── ssh-svc.yaml │ │ │ └── tests │ │ │ │ └── test-http-connection.yaml │ │ │ ├── values.yaml │ │ │ └── yq.1 │ ├── kibana │ │ └── chart │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── default │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── test │ │ │ │ │ └── goss.yaml │ │ │ ├── openshift │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ └── values.yml │ │ │ ├── security │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── test │ │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ └── upgrade │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── test │ │ │ │ └── goss.yaml │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ ├── kyverno │ │ └── release │ │ │ └── install.yaml │ ├── spire │ │ ├── crd │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── spire.spiffe.io_clusterfederatedtrustdomains.yaml │ │ │ │ ├── spire.spiffe.io_clusterspiffeids.yaml │ │ │ │ └── spire.spiffe.io_clusterstaticentries.yaml │ │ │ └── values.yaml │ │ └── server │ │ │ ├── .helmignore │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── charts │ │ │ ├── spiffe-csi-driver │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── scc-restricted-csi.yaml │ │ │ │ │ ├── scc-spiffe-csi-driver.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── spiffe-csi-driver.yaml │ │ │ │ └── values.yaml │ │ │ ├── spiffe-oidc-discovery-provider │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── files │ │ │ │ │ └── test │ │ │ │ │ │ └── jwt-decode.sh │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── certificate.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── issuer.yaml │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ ├── pre-delete-hook.yaml │ │ │ │ │ ├── scc-spire-oidc-discovery-provider.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-connection.yaml │ │ │ │ │ │ └── test-keys.yaml │ │ │ │ └── values.yaml │ │ │ ├── spire-agent │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ ├── pre-upgrade-hook.yaml │ │ │ │ │ ├── roles.yaml │ │ │ │ │ ├── scc-spire-agent.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── spire-server │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── aws-kms-configmap.yaml │ │ │ │ │ ├── aws-kms-secret.yaml │ │ │ │ │ ├── bundle-configmap.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── controller-manager-cluster-ids.yaml │ │ │ │ │ ├── controller-manager-configmap.yaml │ │ │ │ │ ├── controller-manager-ftd.yaml │ │ │ │ │ ├── controller-manager-roles.yaml │ │ │ │ │ ├── controller-manager-service.yaml │ │ │ │ │ ├── controller-manager-static-entries.yaml │ │ │ │ │ ├── controller-manager-webhook.yaml │ │ │ │ │ ├── federation-certificate.yaml │ │ │ │ │ ├── federation-ingress.yaml │ │ │ │ │ ├── federation-issuer.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── issuer.yaml │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ ├── podmonitor.yaml │ │ │ │ │ ├── post-install-hook.yaml │ │ │ │ │ ├── post-upgrade-hook.yaml │ │ │ │ │ ├── pre-delete-hook.yaml │ │ │ │ │ ├── pre-upgrade-hook.yaml │ │ │ │ │ ├── roles.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── server-resource.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── test-connection.yaml │ │ │ │ │ │ └── test-tornjak-connection.yaml │ │ │ │ │ ├── tornjak-config.yaml │ │ │ │ │ ├── tornjak-ingress.yaml │ │ │ │ │ ├── tornjak-service.yaml │ │ │ │ │ ├── tpm-configmap.yaml │ │ │ │ │ └── upstream-ca-secret.yaml │ │ │ │ └── values.yaml │ │ │ └── tornjak-frontend │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-tornjak-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _spire-lib.tpl │ │ │ ├── spire-server-namespace.yaml │ │ │ └── spire-system-namespace.yaml │ │ │ └── values.yaml │ ├── tekton │ │ ├── catalog │ │ │ └── main │ │ │ │ ├── pipeline │ │ │ │ └── buildpacks │ │ │ │ │ └── 0.2 │ │ │ │ │ └── buildpacks.yaml │ │ │ │ └── task │ │ │ │ ├── buildpacks-phases │ │ │ │ └── 0.2 │ │ │ │ │ └── buildpacks-phases.yaml │ │ │ │ ├── buildpacks │ │ │ │ └── 0.6 │ │ │ │ │ └── buildpacks.yaml │ │ │ │ ├── git-clone │ │ │ │ └── 0.10 │ │ │ │ │ └── git-clone.yaml │ │ │ │ ├── golang-build │ │ │ │ └── 0.3 │ │ │ │ │ └── golang-build.yaml │ │ │ │ ├── golang-test │ │ │ │ └── 0.2 │ │ │ │ │ └── golang-test.yaml │ │ │ │ ├── jib-gradle │ │ │ │ └── 0.4 │ │ │ │ │ └── jib-gradle.yaml │ │ │ │ ├── kaniko │ │ │ │ └── 0.7 │ │ │ │ │ └── kaniko.yaml │ │ │ │ ├── maven │ │ │ │ └── 0.4 │ │ │ │ │ └── maven.yaml │ │ │ │ └── trivy-scanner │ │ │ │ └── 0.2 │ │ │ │ └── trivy-scanner.yaml │ │ ├── chains │ │ │ └── release.yaml │ │ ├── pipeline │ │ │ └── release.yaml │ │ └── triggers │ │ │ ├── interceptors.yaml │ │ │ └── release.yaml │ ├── vault │ │ └── chart │ │ │ ├── .circleci │ │ │ └── config.yml │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ ├── config.yml │ │ │ │ └── feature_request.md │ │ │ └── workflows │ │ │ │ ├── acceptance.yaml │ │ │ │ ├── jira.yaml │ │ │ │ ├── setup-test-tools │ │ │ │ └── action.yaml │ │ │ │ └── tests.yaml │ │ │ ├── .gitignore │ │ │ ├── .helmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.yaml │ │ │ ├── LICENSE.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── csi-clusterrole.yaml │ │ │ ├── csi-clusterrolebinding.yaml │ │ │ ├── csi-daemonset.yaml │ │ │ ├── csi-serviceaccount.yaml │ │ │ ├── injector-certs-secret.yaml │ │ │ ├── injector-clusterrole.yaml │ │ │ ├── injector-clusterrolebinding.yaml │ │ │ ├── injector-deployment.yaml │ │ │ ├── injector-disruptionbudget.yaml │ │ │ ├── injector-mutating-webhook.yaml │ │ │ ├── injector-network-policy.yaml │ │ │ ├── injector-psp-role.yaml │ │ │ ├── injector-psp-rolebinding.yaml │ │ │ ├── injector-psp.yaml │ │ │ ├── injector-role.yaml │ │ │ ├── injector-rolebinding.yaml │ │ │ ├── injector-service.yaml │ │ │ ├── injector-serviceaccount.yaml │ │ │ ├── server-clusterrolebinding.yaml │ │ │ ├── server-config-configmap.yaml │ │ │ ├── server-discovery-role.yaml │ │ │ ├── server-discovery-rolebinding.yaml │ │ │ ├── server-disruptionbudget.yaml │ │ │ ├── server-ha-active-service.yaml │ │ │ ├── server-ha-standby-service.yaml │ │ │ ├── server-headless-service.yaml │ │ │ ├── server-ingress.yaml │ │ │ ├── server-network-policy.yaml │ │ │ ├── server-psp-role.yaml │ │ │ ├── server-psp-rolebinding.yaml │ │ │ ├── server-psp.yaml │ │ │ ├── server-route.yaml │ │ │ ├── server-service.yaml │ │ │ ├── server-serviceaccount.yaml │ │ │ ├── server-statefulset.yaml │ │ │ ├── tests │ │ │ │ └── server-test.yaml │ │ │ └── ui-service.yaml │ │ │ ├── values.openshift.yaml │ │ │ ├── values.schema.json │ │ │ └── values.yaml │ ├── vendor-helm-all.sh │ ├── vendor-helm-chart.sh │ ├── vendor.sh │ └── vendor.yaml └── wait-for-pipelinerun.sh ├── resources ├── docker-config-empty.json ├── kyverno │ └── admission-control-policy │ │ ├── admission-control-verify-attestation.cue │ │ ├── admission-control-verify-image-resources.cue │ │ ├── admission-control-verify-image.cue │ │ └── kyverno.cue ├── opa-gatekeeper │ └── enable-mutating.yaml └── tekton │ └── tasks │ ├── .gitkeep │ └── buildpacks.yaml ├── scripts ├── gen-keys.sh └── provenance.sh ├── shell.nix └── tools └── install-ci.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/all-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/workflows/all-examples.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/install-frsca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/workflows/install-frsca.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /docs/themes 2 | /platform 3 | -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/README.md -------------------------------------------------------------------------------- /cspell.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cspell.config.yaml -------------------------------------------------------------------------------- /cue.mod/gen/github.com/tektoncd/pipeline/pkg/result/result_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/github.com/tektoncd/pipeline/pkg/result/result_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/google.golang.org/grpc/codes/codes_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/google.golang.org/grpc/codes/codes_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/batch/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/batch/v1/register_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/batch/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/batch/v1/types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/core/v1/annotation_key_constants_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/core/v1/annotation_key_constants_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/core/v1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/core/v1/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/core/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/core/v1/register_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/core/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/core/v1/types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/core/v1/well_known_labels_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/core/v1/well_known_labels_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/api/core/v1/well_known_taints_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/api/core/v1/well_known_taints_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/amount_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/amount_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/math_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/math_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/quantity_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/quantity_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/suffix_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/suffix_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/duration_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/duration_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/meta_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/meta_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/register_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/time_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/time_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/watch_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/watch_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/allocator_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/allocator_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/codec_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/codec_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/conversion_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/conversion_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/converter_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/converter_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/embedded_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/embedded_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/helper_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/helper_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/interfaces_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/interfaces_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/negotiate_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/negotiate_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/splice_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/splice_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_proto_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_proto_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/selection/operator_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/selection/operator_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/types/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/types/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/types/namespacedname_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/types/namespacedname_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/types/nodename_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/types/nodename_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/types/patch_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/types/patch_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/types/uid_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/types/uid_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/util/intstr/intstr_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/util/intstr/intstr_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/watch/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/watch/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/watch/filter_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/watch/filter_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/watch/mux_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/watch/mux_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/watch/streamwatcher_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/watch/streamwatcher_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/k8s.io/apimachinery/pkg/watch/watch_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/k8s.io/apimachinery/pkg/watch/watch_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/condition_set_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/condition_set_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/condition_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/condition_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/contexts_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/contexts_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/deprecated_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/deprecated_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/addressable_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/addressable_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/auth_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/auth_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/binding_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/binding_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/cronjob_defaults_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/cronjob_defaults_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/cronjob_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/cronjob_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/destination_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/destination_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/knative_reference_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/knative_reference_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/kresource_type_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/kresource_type_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/podspec_defaults_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/podspec_defaults_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/podspec_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/podspec_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/source_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/source_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1/status_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1/status_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/destination_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/destination_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/source_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/source_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/status_types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/duck/v1beta1/status_types_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/field_error_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/field_error_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/interfaces_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/interfaces_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/metadata_validation_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/metadata_validation_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/url_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/url_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/apis/volatile_time_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/apis/volatile_time_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/tracker/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/tracker/doc_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/gen/knative.dev/pkg/tracker/interface_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/gen/knative.dev/pkg/tracker/interface_go_gen.cue -------------------------------------------------------------------------------- /cue.mod/module.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/cue.mod/module.cue -------------------------------------------------------------------------------- /dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/dependencies.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/bootstrap.sh -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/_index.md -------------------------------------------------------------------------------- /docs/content/docs/contributing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/contributing/_index.md -------------------------------------------------------------------------------- /docs/content/docs/contributing/how-to-contribute.md: -------------------------------------------------------------------------------- 1 | ../../../../.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/content/docs/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/getting-started/_index.md -------------------------------------------------------------------------------- /docs/content/docs/getting-started/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/getting-started/architecture.md -------------------------------------------------------------------------------- /docs/content/docs/getting-started/frsca_mascot-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/getting-started/frsca_mascot-color.png -------------------------------------------------------------------------------- /docs/content/docs/getting-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/getting-started/introduction.md -------------------------------------------------------------------------------- /docs/content/docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/content/docs/help/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/help/_index.md -------------------------------------------------------------------------------- /docs/content/docs/help/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/help/faq.md -------------------------------------------------------------------------------- /docs/content/docs/help/using-cue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/help/using-cue.md -------------------------------------------------------------------------------- /docs/content/docs/slsa/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/slsa/_index.md -------------------------------------------------------------------------------- /docs/content/docs/slsa/frsca-slsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/content/docs/slsa/frsca-slsa.md -------------------------------------------------------------------------------- /docs/diagrams/frsca.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/diagrams/frsca.url -------------------------------------------------------------------------------- /docs/diagrams/workspace.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/diagrams/workspace.dsl -------------------------------------------------------------------------------- /docs/diagrams/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/diagrams/workspace.json -------------------------------------------------------------------------------- /docs/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/serve.sh -------------------------------------------------------------------------------- /docs/static/img/frsca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/static/img/frsca.png -------------------------------------------------------------------------------- /docs/static/img/frsca_mascot-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/static/img/frsca_mascot-color.png -------------------------------------------------------------------------------- /docs/templates/docs/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/templates/docs/page.html -------------------------------------------------------------------------------- /docs/templates/shortcodes/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/templates/shortcodes/markdown.html -------------------------------------------------------------------------------- /docs/themes/adidoks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/.gitignore -------------------------------------------------------------------------------- /docs/themes/adidoks/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/themes/adidoks/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/themes/adidoks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/LICENSE -------------------------------------------------------------------------------- /docs/themes/adidoks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/README.md -------------------------------------------------------------------------------- /docs/themes/adidoks/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/config.toml -------------------------------------------------------------------------------- /docs/themes/adidoks/config.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/config.toml.example -------------------------------------------------------------------------------- /docs/themes/adidoks/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/authors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/authors/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/authors/aaran-xu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/authors/aaran-xu.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/blog/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/blog/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/blog/hello-world.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/blog/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/blog/markdown-syntax.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/blog/math-typesetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/blog/math-typesetting.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/blog/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/blog/placeholder-text.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/blog/say-hello-to-zola-doks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/blog/say-hello-to-zola-doks.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/contributing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/contributing/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/contributing/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/contributing/code-of-conduct.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/contributing/how-to-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/contributing/how-to-contribute.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/getting-started/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/getting-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/getting-started/introduction.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/help/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/help/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/docs/help/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/docs/help/faq.md -------------------------------------------------------------------------------- /docs/themes/adidoks/content/privacy-policy/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/content/privacy-policy/_index.md -------------------------------------------------------------------------------- /docs/themes/adidoks/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/netlify.toml -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/_custom.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/LICENSE -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/README.md -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/alert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/alert.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/base-component.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/base-component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/base-component.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/button.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/button.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/carousel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/carousel.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/collapse.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/collapse.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/data.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/data.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/event-handler.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/event-handler.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/event-handler.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/manipulator.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/manipulator.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/manipulator.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/selector-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/selector-engine.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dom/selector-engine.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dom/selector-engine.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/dropdown.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/dropdown.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/modal.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/offcanvas.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/offcanvas.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/offcanvas.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/popover.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/popover.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/popover.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/scrollspy.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/scrollspy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/scrollspy.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/tab.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/toast.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/toast.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/toast.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/tooltip.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/dist/tooltip.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/dist/tooltip.js.map -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/base-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/base-component.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/carousel.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/collapse.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/dom/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/dom/data.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/dom/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/dom/event-handler.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/dom/manipulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/dom/manipulator.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/dom/selector-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/dom/selector-engine.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/dropdown.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/offcanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/offcanvas.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/scrollspy.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/toast.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/util/index.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/util/sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/util/sanitizer.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/js/src/util/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/js/src/util/scrollbar.js -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/package.json -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_accordion.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_containers.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_helpers.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_offcanvas.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/bootstrap-utilities.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_floating-labels.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_form-check.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_form-range.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_form-select.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_form-text.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_input-group.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_labels.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/forms/_validation.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/helpers/_clearfix.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/helpers/_colored-links.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/helpers/_position.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/helpers/_ratio.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_container.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_table-variants.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_utilities.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/utilities/_api.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/common/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/common/_dark.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/common/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/common/_fonts.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/common/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/common/_global.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/common/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/common/_variables.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_alerts.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_buttons.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_code.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_comments.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_doks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_doks.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_footnote.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_footnote.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_forms.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_images.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_search.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_syntax.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/components/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/components/_tables.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/layouts/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/layouts/_footer.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/layouts/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/layouts/_header.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/layouts/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/layouts/_pages.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/layouts/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/layouts/_posts.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/layouts/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/layouts/_sidebar.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/sass/main.scss -------------------------------------------------------------------------------- /docs/themes/adidoks/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/screenshot.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/_headers: -------------------------------------------------------------------------------- 1 | /* 2 | Access-Control-Allow-Origin: * -------------------------------------------------------------------------------- /docs/themes/adidoks/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/doks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/doks.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/doks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/doks.svg -------------------------------------------------------------------------------- /docs/themes/adidoks/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/favicon-16x16.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/favicon-32x32.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/favicon.ico -------------------------------------------------------------------------------- /docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-500.woff -------------------------------------------------------------------------------- /docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-500.woff2 -------------------------------------------------------------------------------- /docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-700.woff -------------------------------------------------------------------------------- /docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/fonts/vendor/jost/jost-v4-latin-700.woff2 -------------------------------------------------------------------------------- /docs/themes/adidoks/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/index.js -------------------------------------------------------------------------------- /docs/themes/adidoks/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/js/main.js -------------------------------------------------------------------------------- /docs/themes/adidoks/static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/js/search.js -------------------------------------------------------------------------------- /docs/themes/adidoks/static/logo-doks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/logo-doks.png -------------------------------------------------------------------------------- /docs/themes/adidoks/static/plugins/elasticlunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/plugins/elasticlunr.min.js -------------------------------------------------------------------------------- /docs/themes/adidoks/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/static/site.webmanifest -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/404.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/authors/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/authors/list.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/authors/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/authors/single.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/base.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/blog/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/blog/page.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/blog/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/blog/section.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/docs/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/docs/page.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/docs/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/docs/section.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/index.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/docs-edit-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/docs-edit-page.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/docs-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/docs-navigation.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/docs-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/docs-sidebar.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/docs-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/docs-toc.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/footer.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/head.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/header.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/javascript.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/math.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/page-publish-metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/page-publish-metadata.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/macros/section-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/macros/section-navigation.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/page.html -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/robots.txt -------------------------------------------------------------------------------- /docs/themes/adidoks/templates/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/templates/section.html -------------------------------------------------------------------------------- /docs/themes/adidoks/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/docs/themes/adidoks/theme.toml -------------------------------------------------------------------------------- /examples/buildpacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/buildpacks/README.md -------------------------------------------------------------------------------- /examples/buildpacks/buildpacks-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/buildpacks/buildpacks-run.sh -------------------------------------------------------------------------------- /examples/buildpacks/buildpacks-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/buildpacks/buildpacks-setup.sh -------------------------------------------------------------------------------- /examples/buildpacks/buildpacks.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/buildpacks/buildpacks.cue -------------------------------------------------------------------------------- /examples/buildpacks/dual-storage-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/buildpacks/dual-storage-backend.md -------------------------------------------------------------------------------- /examples/cosign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/cosign/README.md -------------------------------------------------------------------------------- /examples/cosign/cosign.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/cosign/cosign.cue -------------------------------------------------------------------------------- /examples/cosign/cosign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/cosign/cosign.sh -------------------------------------------------------------------------------- /examples/cosign/cyclonedx.sbom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/cosign/cyclonedx.sbom -------------------------------------------------------------------------------- /examples/cosign/pipeline-ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/cosign/pipeline-ko.yaml -------------------------------------------------------------------------------- /examples/cosign/spdx.sbom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/cosign/spdx.sbom -------------------------------------------------------------------------------- /examples/cosign/task-ko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/cosign/task-ko.yaml -------------------------------------------------------------------------------- /examples/examples.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/examples.cue -------------------------------------------------------------------------------- /examples/go-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/go-pipeline/README.md -------------------------------------------------------------------------------- /examples/go-pipeline/go-pipeline-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/go-pipeline/go-pipeline-run.sh -------------------------------------------------------------------------------- /examples/go-pipeline/go-pipeline-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/go-pipeline/go-pipeline-setup.sh -------------------------------------------------------------------------------- /examples/go-pipeline/go-pipeline.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/go-pipeline/go-pipeline.cue -------------------------------------------------------------------------------- /examples/gradle-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/gradle-pipeline/README.md -------------------------------------------------------------------------------- /examples/gradle-pipeline/gradle-pipeline-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/gradle-pipeline/gradle-pipeline-run.sh -------------------------------------------------------------------------------- /examples/gradle-pipeline/gradle-pipeline-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/gradle-pipeline/gradle-pipeline-setup.sh -------------------------------------------------------------------------------- /examples/gradle-pipeline/gradle-pipeline.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/gradle-pipeline/gradle-pipeline.cue -------------------------------------------------------------------------------- /examples/ibm-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/ibm-tutorial/README.md -------------------------------------------------------------------------------- /examples/ibm-tutorial/ibm-tutorial-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/ibm-tutorial/ibm-tutorial-run.sh -------------------------------------------------------------------------------- /examples/ibm-tutorial/ibm-tutorial-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/ibm-tutorial/ibm-tutorial-setup.sh -------------------------------------------------------------------------------- /examples/ibm-tutorial/ibm-tutorial.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/ibm-tutorial/ibm-tutorial.cue -------------------------------------------------------------------------------- /examples/maven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/maven/README.md -------------------------------------------------------------------------------- /examples/maven/maven-pkg.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/maven/maven-pkg.cue -------------------------------------------------------------------------------- /examples/maven/maven-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/maven/maven-run.sh -------------------------------------------------------------------------------- /examples/maven/maven-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/maven/maven-setup.sh -------------------------------------------------------------------------------- /examples/sample-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/sample-pipeline/README.md -------------------------------------------------------------------------------- /examples/sample-pipeline/sample-pipeline-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/sample-pipeline/sample-pipeline-run.sh -------------------------------------------------------------------------------- /examples/sample-pipeline/sample-pipeline-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/sample-pipeline/sample-pipeline-setup.sh -------------------------------------------------------------------------------- /examples/sample-pipeline/sample-pipeline.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/examples/sample-pipeline/sample-pipeline.cue -------------------------------------------------------------------------------- /frsca-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/frsca-words.txt -------------------------------------------------------------------------------- /frsca.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/frsca.cue -------------------------------------------------------------------------------- /frsca_mascot-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/frsca_mascot-color.png -------------------------------------------------------------------------------- /frsca_tool.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/frsca_tool.cue -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/go.sum -------------------------------------------------------------------------------- /platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/.gitignore -------------------------------------------------------------------------------- /platform/00-kubernetes-minikube-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/00-kubernetes-minikube-setup.sh -------------------------------------------------------------------------------- /platform/02-setup-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/02-setup-certs.sh -------------------------------------------------------------------------------- /platform/04-registry-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/04-registry-setup.sh -------------------------------------------------------------------------------- /platform/05-registry-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/05-registry-proxy.sh -------------------------------------------------------------------------------- /platform/06-gitea-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/06-gitea-install.sh -------------------------------------------------------------------------------- /platform/10-tekton-pipelines-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/10-tekton-pipelines-install.sh -------------------------------------------------------------------------------- /platform/11-tekton-pipeline-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/11-tekton-pipeline-setup.sh -------------------------------------------------------------------------------- /platform/12-tekton-chains-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/12-tekton-chains-install.sh -------------------------------------------------------------------------------- /platform/13-tekton-chains-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/13-tekton-chains-setup.sh -------------------------------------------------------------------------------- /platform/14-tekton-tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/14-tekton-tasks.sh -------------------------------------------------------------------------------- /platform/20-spire-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/20-spire-install.sh -------------------------------------------------------------------------------- /platform/21-spire-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/21-spire-setup.sh -------------------------------------------------------------------------------- /platform/25-vault-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/25-vault-install.sh -------------------------------------------------------------------------------- /platform/26-vault-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/26-vault-setup.sh -------------------------------------------------------------------------------- /platform/30-kyverno-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/30-kyverno-install.sh -------------------------------------------------------------------------------- /platform/31-kyverno-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/31-kyverno-setup.sh -------------------------------------------------------------------------------- /platform/35-opa-gatekeeper-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/35-opa-gatekeeper-setup.sh -------------------------------------------------------------------------------- /platform/40-efk-stack-setup/40-efk-stack-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/40-efk-stack-setup/40-efk-stack-setup.sh -------------------------------------------------------------------------------- /platform/40-efk-stack-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/40-efk-stack-setup/README.md -------------------------------------------------------------------------------- /platform/50-example-mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/50-example-mirror.sh -------------------------------------------------------------------------------- /platform/components/cert-manager/ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/cert-manager/ca.yaml -------------------------------------------------------------------------------- /platform/components/cert-manager/gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/cert-manager/gitea.yaml -------------------------------------------------------------------------------- /platform/components/cert-manager/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/cert-manager/registry.yaml -------------------------------------------------------------------------------- /platform/components/cert-manager/spire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/cert-manager/spire.yaml -------------------------------------------------------------------------------- /platform/components/elastic/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/elastic/values.yaml -------------------------------------------------------------------------------- /platform/components/gitea/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/gitea/values.yaml -------------------------------------------------------------------------------- /platform/components/kyverno/patch_container_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/kyverno/patch_container_args.json -------------------------------------------------------------------------------- /platform/components/registry/registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/registry/registry.yaml -------------------------------------------------------------------------------- /platform/components/spire/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/spire/values.yaml -------------------------------------------------------------------------------- /platform/components/tekton/chains/patch_ca_certs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/chains/patch_ca_certs.json -------------------------------------------------------------------------------- /platform/components/tekton/chains/patch_config_dual_backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/chains/patch_config_dual_backend.yaml -------------------------------------------------------------------------------- /platform/components/tekton/chains/patch_config_kms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/chains/patch_config_kms.yaml -------------------------------------------------------------------------------- /platform/components/tekton/chains/patch_config_oci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/chains/patch_config_oci.yaml -------------------------------------------------------------------------------- /platform/components/tekton/chains/patch_spire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/chains/patch_spire.json -------------------------------------------------------------------------------- /platform/components/tekton/pipelines/patch_ca_certs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/pipelines/patch_ca_certs.json -------------------------------------------------------------------------------- /platform/components/tekton/tasks/patch_buildpacks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/tasks/patch_buildpacks.yml -------------------------------------------------------------------------------- /platform/components/tekton/tasks/patch_git_clone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/tasks/patch_git_clone.yml -------------------------------------------------------------------------------- /platform/components/tekton/tasks/patch_gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/tasks/patch_gradle.yml -------------------------------------------------------------------------------- /platform/components/tekton/tasks/patch_kaniko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/tasks/patch_kaniko.yml -------------------------------------------------------------------------------- /platform/components/tekton/tasks/patch_trivy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/tasks/patch_trivy.yml -------------------------------------------------------------------------------- /platform/components/tekton/triggers/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/tekton/triggers/rbac.yaml -------------------------------------------------------------------------------- /platform/components/vault/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/components/vault/values.yaml -------------------------------------------------------------------------------- /platform/vault/.gitignore: -------------------------------------------------------------------------------- 1 | root-token 2 | unseal-key 3 | -------------------------------------------------------------------------------- /platform/vendor/cert-manager/release/cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/cert-manager/release/cert-manager.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/config/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/config/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/config/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/config/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/config/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/config/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/config/watcher_encryption_key: -------------------------------------------------------------------------------- 1 | supersecret 2 | -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/default/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/default/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/default/rolling_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/default/rolling_upgrade.sh -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/default/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/default/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/docker-for-mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/docker-for-mac/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/docker-for-mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/docker-for-mac/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/docker-for-mac/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/docker-for-mac/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/kubernetes-kind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/kubernetes-kind/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/kubernetes-kind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/kubernetes-kind/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/kubernetes-kind/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/kubernetes-kind/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/microk8s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/microk8s/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/microk8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/microk8s/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/microk8s/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/microk8s/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/migration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/migration/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/migration/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/migration/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/migration/client.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/migration/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/migration/data.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/migration/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/migration/master.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/minikube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/minikube/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/minikube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/minikube/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/minikube/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/minikube/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/multi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/multi/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/multi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/multi/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/multi/client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/multi/client.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/multi/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/multi/data.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/multi/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/multi/master.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/multi/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/multi/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/networkpolicy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/networkpolicy/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/networkpolicy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/networkpolicy/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/openshift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/openshift/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/openshift/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/openshift/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/openshift/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/openshift/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/openshift/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/security/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/security/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/security/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/security/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/security/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/security/values.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/upgrade/Makefile -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/upgrade/README.md -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/upgrade/scripts/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/upgrade/scripts/upgrade.sh -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/upgrade/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/examples/upgrade/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/examples/upgrade/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | clusterName: upgrade 3 | -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/configmap.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/ingress.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/podsecuritypolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/podsecuritypolicy.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/role.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/rolebinding.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/service.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/templates/statefulset.yaml -------------------------------------------------------------------------------- /platform/vendor/elastic/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/elastic/chart/values.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/.helmignore -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/README.md -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/ci/ci-values.yaml: -------------------------------------------------------------------------------- 1 | logLevel: debug 2 | -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/dashboards/fluent-bit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/dashboards/fluent-bit.json -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/_pod.tpl -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/clusterrole.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/configmap-dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/configmap-dashboards.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/configmap-luascripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/configmap-luascripts.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/configmap.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/daemonset.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/hpa.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/ingress.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/pdb.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/psp.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/scc.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/service.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /platform/vendor/fluent/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/fluent/chart/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gatekeeper/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gatekeeper/chart/.helmignore -------------------------------------------------------------------------------- /platform/vendor/gatekeeper/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gatekeeper/chart/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/gatekeeper/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gatekeeper/chart/README.md -------------------------------------------------------------------------------- /platform/vendor/gatekeeper/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gatekeeper/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/gatekeeper/chart/templates/upgrade-crds-hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gatekeeper/chart/templates/upgrade-crds-hook.yaml -------------------------------------------------------------------------------- /platform/vendor/gatekeeper/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gatekeeper/chart/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/.helmignore -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/Chart.lock -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/LICENSE -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/README.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql-ha/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql-ha/.helmignore -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql-ha/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql-ha/Chart.lock -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql-ha/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql-ha/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql-ha/README.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql-ha/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql-ha/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql-ha/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql-ha/templates/role.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql-ha/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql-ha/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/.helmignore -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/Chart.lock -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/README.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/charts/common/README.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/templates/psp.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/templates/read/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/templates/read/pdb.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/templates/read/svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/templates/read/svc.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/templates/role.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/templates/secrets.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/values.schema.json -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/postgresql/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/postgresql/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey-cluster/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey-cluster/.helmignore -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey-cluster/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey-cluster/Chart.lock -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey-cluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey-cluster/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey-cluster/README.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey-cluster/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey-cluster/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey-cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey-cluster/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/.helmignore -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/Chart.lock -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/README.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/charts/common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/charts/common/.helmignore -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/charts/common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/charts/common/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/charts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/charts/common/README.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/charts/common/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/charts/common/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/configmap.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/extra-list.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/headless-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/headless-svc.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/metrics-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/metrics-svc.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/podmonitor.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/primary/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/primary/pdb.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/primary/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/primary/psp.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/primary/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/primary/pvc.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/replicas/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/replicas/hpa.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/replicas/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/replicas/pdb.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/replicas/vpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/replicas/vpa.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/role.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/rolebinding.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/secret.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/sentinel/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/sentinel/hpa.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/sentinel/pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/sentinel/pdb.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/sentinel/vpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/sentinel/vpa.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/templates/tls-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/templates/tls-secret.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/values.schema.json -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/charts/valkey/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/charts/valkey/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/docs/ha-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/docs/ha-setup.md -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/install-man-page.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/install-man-page.sh -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/scripts/act_runner/token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/scripts/act_runner/token.sh -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/scripts/init-containers/init/configure_gpg_environment.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -eu 3 | 4 | gpg --batch --import "$TMP_RAW_GPG_KEY" 5 | -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/config.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/deployment.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/deprecation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/deprecation.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/extra-list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/extra-list.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/gpg-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/gpg-secret.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/http-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/http-svc.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/ingress.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/init.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/metrics-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/metrics-secret.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/pvc.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/serviceaccount.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/servicemonitor.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/templates/gitea/ssh-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/templates/gitea/ssh-svc.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/values.yaml -------------------------------------------------------------------------------- /platform/vendor/gitea/chart/yq.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/gitea/chart/yq.1 -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/.helmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .pytest_cache/ 3 | -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/Makefile: -------------------------------------------------------------------------------- 1 | include ../helpers/common.mk 2 | -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/README.md -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/default/Makefile -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/default/README.md -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/default/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/default/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/openshift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/openshift/Makefile -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/openshift/README.md -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/openshift/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/openshift/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/openshift/values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/openshift/values.yml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/security/Makefile -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/security/README.md -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/security/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/security/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/security/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/security/values.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/upgrade/Makefile -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/upgrade/README.md -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/upgrade/test/goss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/examples/upgrade/test/goss.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/examples/upgrade/values.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | elasticsearchHosts: "http://upgrade-master:9200" 3 | -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/templates/configmap.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/templates/deployment.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/templates/ingress.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/templates/service.yaml -------------------------------------------------------------------------------- /platform/vendor/kibana/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kibana/chart/values.yaml -------------------------------------------------------------------------------- /platform/vendor/kyverno/release/install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/kyverno/release/install.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/crd/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/crd/.helmignore -------------------------------------------------------------------------------- /platform/vendor/spire/crd/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/crd/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/crd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/crd/README.md -------------------------------------------------------------------------------- /platform/vendor/spire/crd/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/crd/values.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/.helmignore -------------------------------------------------------------------------------- /platform/vendor/spire/server/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/Chart.lock -------------------------------------------------------------------------------- /platform/vendor/spire/server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/LICENSE -------------------------------------------------------------------------------- /platform/vendor/spire/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/README.md -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spiffe-csi-driver/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spiffe-csi-driver/.helmignore -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spiffe-csi-driver/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spiffe-csi-driver/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spiffe-csi-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spiffe-csi-driver/README.md -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spiffe-csi-driver/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | SPIFFE CSI Driver installed… 2 | -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spiffe-csi-driver/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spiffe-csi-driver/values.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spiffe-oidc-discovery-provider/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | SPIFFE OIDC discovery provider installed… 2 | -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-agent/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-agent/.helmignore -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-agent/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-agent/README.md -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-agent/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Installed {{ .Chart.Name }}… 2 | -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-agent/values.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-server/.helmignore -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-server/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-server/README.md -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/spire-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/spire-server/values.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/tornjak-frontend/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/tornjak-frontend/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/tornjak-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/tornjak-frontend/README.md -------------------------------------------------------------------------------- /platform/vendor/spire/server/charts/tornjak-frontend/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/charts/tornjak-frontend/values.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/spire/server/templates/_spire-lib.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/templates/_spire-lib.tpl -------------------------------------------------------------------------------- /platform/vendor/spire/server/templates/spire-server-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/templates/spire-server-namespace.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/templates/spire-system-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/templates/spire-system-namespace.yaml -------------------------------------------------------------------------------- /platform/vendor/spire/server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/spire/server/values.yaml -------------------------------------------------------------------------------- /platform/vendor/tekton/catalog/main/task/kaniko/0.7/kaniko.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/tekton/catalog/main/task/kaniko/0.7/kaniko.yaml -------------------------------------------------------------------------------- /platform/vendor/tekton/catalog/main/task/maven/0.4/maven.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/tekton/catalog/main/task/maven/0.4/maven.yaml -------------------------------------------------------------------------------- /platform/vendor/tekton/chains/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/tekton/chains/release.yaml -------------------------------------------------------------------------------- /platform/vendor/tekton/pipeline/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/tekton/pipeline/release.yaml -------------------------------------------------------------------------------- /platform/vendor/tekton/triggers/interceptors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/tekton/triggers/interceptors.yaml -------------------------------------------------------------------------------- /platform/vendor/tekton/triggers/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/tekton/triggers/release.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/.circleci/config.yml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.github/workflows/acceptance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/.github/workflows/acceptance.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.github/workflows/jira.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/.github/workflows/jira.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/.gitignore -------------------------------------------------------------------------------- /platform/vendor/vault/chart/.helmignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .terraform/ 3 | bin/ 4 | test/ 5 | -------------------------------------------------------------------------------- /platform/vendor/vault/chart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/CHANGELOG.md -------------------------------------------------------------------------------- /platform/vendor/vault/chart/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/CONTRIBUTING.md -------------------------------------------------------------------------------- /platform/vendor/vault/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/Chart.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/LICENSE.md -------------------------------------------------------------------------------- /platform/vendor/vault/chart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/Makefile -------------------------------------------------------------------------------- /platform/vendor/vault/chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/README.md -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/NOTES.txt -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/csi-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/csi-clusterrole.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/csi-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/csi-clusterrolebinding.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/csi-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/csi-daemonset.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/csi-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/csi-serviceaccount.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-certs-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-certs-secret.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-clusterrole.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-deployment.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-network-policy.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-psp-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-psp-role.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-psp.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-role.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-rolebinding.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-service.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/injector-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/injector-serviceaccount.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-config-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-config-configmap.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-discovery-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-discovery-role.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-disruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-disruptionbudget.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-headless-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-headless-service.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-ingress.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-network-policy.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-psp-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-psp-role.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-psp-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-psp-rolebinding.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-psp.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-route.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-service.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-serviceaccount.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/server-statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/server-statefulset.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/tests/server-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/tests/server-test.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/templates/ui-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/templates/ui-service.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/values.openshift.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/values.openshift.yaml -------------------------------------------------------------------------------- /platform/vendor/vault/chart/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/values.schema.json -------------------------------------------------------------------------------- /platform/vendor/vault/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vault/chart/values.yaml -------------------------------------------------------------------------------- /platform/vendor/vendor-helm-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vendor-helm-all.sh -------------------------------------------------------------------------------- /platform/vendor/vendor-helm-chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vendor-helm-chart.sh -------------------------------------------------------------------------------- /platform/vendor/vendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vendor.sh -------------------------------------------------------------------------------- /platform/vendor/vendor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/vendor/vendor.yaml -------------------------------------------------------------------------------- /platform/wait-for-pipelinerun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/platform/wait-for-pipelinerun.sh -------------------------------------------------------------------------------- /resources/docker-config-empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /resources/kyverno/admission-control-policy/kyverno.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/resources/kyverno/admission-control-policy/kyverno.cue -------------------------------------------------------------------------------- /resources/opa-gatekeeper/enable-mutating.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | experimentalEnableMutation: true 3 | -------------------------------------------------------------------------------- /resources/tekton/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tekton/tasks/buildpacks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/resources/tekton/tasks/buildpacks.yaml -------------------------------------------------------------------------------- /scripts/gen-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/scripts/gen-keys.sh -------------------------------------------------------------------------------- /scripts/provenance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/scripts/provenance.sh -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/shell.nix -------------------------------------------------------------------------------- /tools/install-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildsec/frsca/HEAD/tools/install-ci.sh --------------------------------------------------------------------------------