├── .github ├── ISSUE_TEMPLATE │ ├── Other.md │ ├── bug-report.yml │ ├── documentation-update.yml │ ├── feature_request.yml │ ├── new-arch.yml │ ├── new-distro.yml │ └── user-feedback.yml ├── PULL_REQUEST_TEMPLATE.md ├── scripts │ ├── configure_versions_script.sh │ └── package_push.sh └── workflows │ ├── E2E-test.yml │ ├── build-push.yml │ ├── copyagentreadme.yml │ └── copydocs.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MAINTAINERS.md ├── Makefile ├── README.md ├── abstractprotocol ├── cancel.go ├── datareceived.go ├── datareceivedack.go ├── meteringnotification.go ├── proposal.go ├── proposalreply.go ├── proposalreplyack.go └── protocol.go ├── agent-install ├── README.md ├── agent-auto-upgrade.sh ├── agent-install.sh ├── agent-uninstall.sh ├── edgeNodeFiles.sh ├── k8s │ ├── auto-upgrade-cronjob-template.yml │ ├── deployment-template.yml │ └── persistentClaim-template.yml └── test │ ├── README.md │ ├── assertions.sh │ ├── common.sh │ ├── config │ ├── agent-install.cfg.template │ ├── node_policy.json │ └── switch │ │ └── agent-install.cfg.template │ ├── known-issues.md │ └── test.sh ├── agreement ├── agreement.go ├── commands.go └── node.go ├── agreementbot ├── activecontracts.go ├── agentfiles.go ├── agreementbot.go ├── agreementworker.go ├── api.go ├── basic_agreement_worker.go ├── basic_protocol_handler.go ├── businesspol_manager.go ├── changes_worker.go ├── commands.go ├── consumer_protocol_handler.go ├── consumer_protocol_handler_manager.go ├── governance.go ├── governance_test.go ├── lock_manager.go ├── lock_manager_test.go ├── node_search.go ├── nodehealth_manager.go ├── nodehealth_manager_test.go ├── object_manager.go ├── object_manager_test.go ├── pattern_manager.go ├── pattern_manager_test.go ├── persistence │ ├── agreement.go │ ├── bolt │ │ ├── agreement.go │ │ ├── ha_group_node_management.go │ │ ├── ha_group_workload.go │ │ ├── init.go │ │ ├── partition.go │ │ ├── search_session.go │ │ ├── secrets.go │ │ └── workload_usage.go │ ├── database.go │ ├── ha_group_node_management.go │ ├── ha_group_workload.go │ ├── postgresql │ │ ├── agreement.go │ │ ├── ha_group_node_management.go │ │ ├── ha_group_workload.go │ │ ├── init.go │ │ ├── partition.go │ │ ├── search_session.go │ │ ├── secrets.go │ │ ├── version.go │ │ └── workload_usage.go │ ├── registry.go │ └── workload_usage.go ├── policy.go ├── prioritized_workqueue.go ├── prioritized_workqueue_stats.go ├── prioritized_workqueue_test.go ├── secret_updater.go ├── secret_updater_test.go ├── secrets │ ├── plugin_errors.go │ ├── registry.go │ ├── secrets.go │ └── vault │ │ ├── http.go │ │ ├── init.go │ │ └── vault.go └── secure_api.go ├── anax-in-container ├── Dockerfile.alpine.amd64 ├── Dockerfile.ubi.amd64 ├── Dockerfile.ubi.arm64 ├── Dockerfile.ubi.ppc64el ├── Dockerfile.ubi.s390x ├── Dockerfile_agbot.ubi ├── EPEL.repo ├── README.md ├── config │ ├── agbot.json.tmpl │ ├── anax.json │ └── hzn.json ├── horizon-container └── script │ ├── agbot_start.sh │ └── anax.service ├── anax-in-k8s ├── Dockerfile.ubi.amd64 ├── Dockerfile.ubi.arm64 ├── Dockerfile.ubi.auto-upgrade-cron.amd64 ├── Dockerfile.ubi.auto-upgrade-cron.arm64 ├── Dockerfile.ubi.auto-upgrade-cron.ppc64el ├── Dockerfile.ubi.auto-upgrade-cron.s390x ├── Dockerfile.ubi.ppc64el ├── Dockerfile.ubi.s390x ├── EPEL.repo ├── config │ ├── anax.json │ └── hzn.json ├── cronjobs │ └── auto-upgrade-cronjob.sh └── script │ └── anax.service ├── api ├── api.go ├── api_agreement.go ├── api_attribute.go ├── api_eventlog.go ├── api_int_test.go ├── api_management.go ├── api_node.go ├── api_publickey.go ├── api_service.go ├── api_status.go ├── api_test.go ├── api_token_random.go ├── common_test.go ├── errors.go ├── errors_test.go ├── input.go ├── input_validation.go ├── input_validation_test.go ├── messages.go ├── output.go ├── output_test.go ├── path_agreement.go ├── path_agreement_test.go ├── path_attributes.go ├── path_eventlog.go ├── path_eventlog_test.go ├── path_management_nextjob.go ├── path_management_nextjob_test.go ├── path_management_status.go ├── path_management_status_test.go ├── path_node.go ├── path_node_configstate.go ├── path_node_configstate_test.go ├── path_node_policy.go ├── path_node_policy_test.go ├── path_node_test.go ├── path_node_userinput.go ├── path_publickey.go ├── path_publickey_test.go ├── path_service.go ├── path_service_config.go ├── path_service_config_test.go ├── path_service_configstate.go └── path_service_configstate_test.go ├── apicommon ├── status.go └── status_test.go ├── basicprotocol ├── diagrams │ ├── horizonSequenceDiagram.png │ ├── horizonSequenceDiagram.txt │ ├── protocolSequenceDiagram.png │ └── protocolSequenceDiagram.txt └── protocol.go ├── businesspolicy ├── business_policy.go └── business_policy_test.go ├── cache ├── cache.go └── simple_map_cache.go ├── changes ├── changes_worker.go └── commands.go ├── cli ├── agreement │ └── agreement.go ├── agreementbot │ ├── agreement.go │ ├── getcache.go │ ├── node.go │ └── policy.go ├── attribute │ └── attribute.go ├── cliconfig │ ├── config.go │ └── hzn.json.tmpl ├── cliutils │ ├── cliutils.go │ ├── cliutils_test.go │ └── stdout_logging.go ├── deploycheck │ ├── allcomp.go │ ├── policy.go │ ├── secretbinding.go │ └── userinput.go ├── dev │ ├── dependency.go │ ├── hznenv.go │ ├── image.go │ ├── patterndefinition.go │ ├── secrets.go │ ├── service.go │ ├── servicedefinition.go │ ├── servicepolicy.go │ ├── sourcemanager.go │ ├── userinput.go │ ├── utils.go │ ├── utils_int_test.go │ └── utils_test.go ├── eventlog │ └── eventlog.go ├── exchange │ ├── agbot.go │ ├── apikey.go │ ├── business.go │ ├── business_test.go │ ├── catalog.go │ ├── ha_group.go │ ├── nmp.go │ ├── node.go │ ├── org.go │ ├── pattern.go │ ├── service.go │ ├── status.go │ ├── user.go │ └── version.go ├── fdo │ ├── key.go │ └── voucher.go ├── helm_deployment │ └── helm_deployment.go ├── hzn.go ├── i18n_messages │ └── catalog_empty.go ├── key │ └── key.go ├── kube_deployment │ └── kube_deployment.go ├── locales │ ├── de │ │ └── messages.gotext.json │ ├── es │ │ └── messages.gotext.json │ ├── fr │ │ └── messages.gotext.json │ ├── it │ │ └── messages.gotext.json │ ├── ja │ │ └── messages.gotext.json │ ├── ko │ │ └── messages.gotext.json │ ├── pt-BR │ │ └── messages.gotext.json │ ├── zh-CN │ │ └── messages.gotext.json │ └── zh-TW │ │ └── messages.gotext.json ├── metering │ └── metering.go ├── native_deployment │ └── native_deployment.go ├── nm_status │ └── nm_status.go ├── node │ └── node.go ├── node_management │ ├── agentfiles.go │ └── manifest.go ├── plugin_registry │ ├── plugin_context.go │ └── plugin_registry.go ├── policy │ └── policy.go ├── register │ ├── register.go │ └── servicewait.go ├── samples │ ├── business_policy.json │ ├── insert-service-into-pattern.json │ ├── node_policy_input.json │ ├── pattern.json │ ├── privileged_node_policy.json │ ├── service.json │ ├── service_cluster.json │ └── user_input.json ├── secrets_manager │ └── secrets_manager.go ├── service │ └── service.go ├── status │ └── status.go ├── sync_service │ ├── download.go │ ├── names.go │ ├── object.go │ ├── status.go │ └── sync_service.go ├── unregister │ └── unregister.go ├── userinput │ └── userinput.go └── utilcmds │ └── utilcmds.go ├── clusterupgrade ├── cluster_install_files.go ├── cluster_upgrade_worker.go ├── commands.go └── kubeClient.go ├── common ├── deploymentconfig.go ├── node_management.go ├── pattern_file.go ├── service_file.go └── userinput_file.go ├── compcheck ├── comp_check.go ├── pattern.go ├── policy_check.go ├── policy_check_test.go ├── secretbinding_check.go ├── secretbinding_check_test.go ├── service.go ├── userinput_check.go └── userinput_check_test.go ├── config ├── archsynonyms.go ├── collaborators.go ├── collaborators_int_test.go ├── config.go ├── config_test.go ├── constants.go ├── file_sync_service.go ├── file_sync_service_test.go └── postgresql.go ├── container ├── commands.go ├── container.go ├── container_int_test.go └── container_test.go ├── containermessage ├── models.go └── models_test.go ├── css ├── cmd │ └── cloud-sync-service │ │ └── main.go ├── config │ └── sync.conf.tmpl ├── horizonAuthenticate.go ├── image │ ├── cloud-sync-service-amd64 │ │ └── Dockerfile.ubi │ ├── cloud-sync-service-arm64 │ │ └── Dockerfile │ └── cloud-sync-service-armhf │ │ └── Dockerfile └── script │ └── css_start.sh ├── cutil ├── cluster.go ├── cutil.go ├── cutil_test.go ├── mms.go └── test │ ├── cpuinfo │ └── meminfo ├── docs ├── agbot_secure_api.json ├── agent_container_manual_deploy.md ├── agent_in_multi_namespace.md ├── agentfile_manifest.md ├── agreement_bot_api.md ├── all-in-1-setup.md ├── api.md ├── attributes.md ├── authentication_overview.md ├── built_in_policy.md ├── cluster_install.md ├── deployment_policy.md ├── deployment_string.md ├── ha_groups.md ├── ha_groups_2.1.0-agreement-establishment.sequence ├── ha_groups_2.1.0-workload-updates.sequence ├── index.md ├── managed_workloads.md ├── mms_swagger.json ├── model_policy.md ├── node_management_overview.md ├── node_management_policy.md ├── node_management_status.md ├── node_policy.md ├── policy.md ├── properties_and_constraints.md ├── secrets.md └── service_def.md ├── download ├── commands.go ├── download_worker.go └── download_worker_test.go ├── ess ├── HZNDEVAuthenticate.go ├── cmd │ └── edge-sync-service │ │ └── main.go └── image │ ├── edge-sync-service-amd64 │ └── Dockerfile.ubi │ ├── edge-sync-service-arm64 │ ├── Dockerfile │ └── Dockerfile.ubi │ ├── edge-sync-service-armhf │ └── Dockerfile │ ├── edge-sync-service-ppc64el │ ├── Dockerfile.ubi │ └── Dockerfile.ubi.old │ └── edge-sync-service-s390x │ └── Dockerfile.ubi ├── eventlog ├── eventlog_manager.go └── eventlog_manager_test.go ├── events ├── event_state_manager.go ├── event_state_manager_test.go ├── events.go ├── secret_events.go └── secret_events_test.go ├── exchange ├── agbot.go ├── cache.go ├── cache_test.go ├── changes.go ├── css.go ├── diagrams │ ├── receiverEncryption.png │ ├── receiverEncryption.txt │ ├── senderEncryption.png │ └── senderEncryption.txt ├── ha_group.go ├── ha_group_agbot.go ├── handlers.go ├── message_worker.go ├── messaging.go ├── messaging_test.go ├── node.go ├── node_management_policy.go ├── node_management_status.go ├── org.go ├── pattern.go ├── pattern_test.go ├── policy.go ├── rpc.go ├── search.go ├── secret.go ├── service.go └── service_test.go ├── exchangecommon ├── agentfiles.go ├── ha_group.go ├── node_management_policy.go ├── node_management_status.go ├── nodepolicy.go ├── nodepolicy_test.go ├── secret.go ├── secret_test.go ├── service.go └── servicepolicy.go ├── exchangesync ├── node.go ├── node_policy.go ├── node_policy_test.go ├── surface_errors.go ├── test │ ├── nodepolicy_bad.json │ └── nodepolicy_test1.json └── user_input.go ├── externalpolicy ├── builtin_properties.go ├── constraint_expression.go ├── constraint_expression_test.go ├── counter_party_properties.go ├── counter_party_properties_test.go ├── external_policy.go ├── external_policy_test.go ├── plugin_registry │ └── plugin_registry.go ├── property_list.go ├── property_list_test.go └── text_language │ ├── text_language.go │ └── text_language_test.go ├── go.mod ├── go.sum ├── governance ├── commands.go ├── governance.go ├── messages.go ├── microservice.go ├── microservice_test.go ├── node.go ├── node_test.go ├── policy.go ├── shutdown.go ├── status.go └── status_test.go ├── helm ├── cliclient.go ├── client.go ├── client_test.go ├── commands.go └── helmworker.go ├── i18n ├── message_printer.go └── message_printer_test.go ├── i18n_messages └── catalog_empty.go ├── i18n_translation ├── README ├── anax.out.gotext.json ├── hzn.out.gotext.json ├── original │ ├── anax.out.gotext.json.auto │ └── hzn.out.gotext.json.auto └── translated │ ├── anax.out.gotext_de.json │ ├── anax.out.gotext_es.json │ ├── anax.out.gotext_fr.json │ ├── anax.out.gotext_it.json │ ├── anax.out.gotext_ja.json │ ├── anax.out.gotext_ko.json │ ├── anax.out.gotext_pt_BR.json │ ├── anax.out.gotext_zh_CN.json │ ├── anax.out.gotext_zh_TW.json │ ├── hzn.out.gotext_de.json │ ├── hzn.out.gotext_es.json │ ├── hzn.out.gotext_fr.json │ ├── hzn.out.gotext_it.json │ ├── hzn.out.gotext_ja.json │ ├── hzn.out.gotext_ko.json │ ├── hzn.out.gotext_pt_BR.json │ ├── hzn.out.gotext_zh_CN.json │ └── hzn.out.gotext_zh_TW.json ├── imagefetch ├── image_process.go ├── image_process_int_test.go ├── image_process_test.go ├── imagepull.go ├── imagepull_test.go └── test │ └── docker_auths.json ├── kube_operator ├── api_objects.go ├── client.go ├── commands.go └── kubeworker.go ├── locales ├── de │ └── messages.gotext.json ├── es │ └── messages.gotext.json ├── fr │ └── messages.gotext.json ├── it │ └── messages.gotext.json ├── ja │ └── messages.gotext.json ├── ko │ └── messages.gotext.json ├── pt-BR │ └── messages.gotext.json ├── zh-CN │ └── messages.gotext.json └── zh-TW │ └── messages.gotext.json ├── main.go ├── metering ├── metering.go └── metering_test.go ├── microservice ├── microservice.go └── microservice_test.go ├── nodemanagement ├── agent_upgrade.go ├── commands.go ├── messages.go ├── node_management_worker.go └── node_management_worker_test.go ├── persistence ├── attribute_types.go ├── attributes.go ├── container_volumes.go ├── device.go ├── device_test.go ├── eventlog_const.go ├── eventlog_types.go ├── eventlog_types_test.go ├── eventlogs.go ├── eventlogs_test.go ├── exchange_changes.go ├── helm_deployment.go ├── helm_deployment_test.go ├── kube_deployment.go ├── microservice_interface.go ├── microservices.go ├── microservices_test.go ├── native_deployment.go ├── node_management_policy.go ├── node_management_status.go ├── node_pattern.go ├── node_policy.go ├── node_policy_test.go ├── node_status.go ├── persistence.go ├── persistence_int_test.go ├── persistence_test.go ├── secret_status.go ├── secrets.go ├── service_images.go ├── surface_errors.go └── user_input.go ├── pkg ├── deb │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── horizon-cli-control.tmpl │ ├── horizon-cli │ │ ├── DEBIAN │ │ │ ├── compat │ │ │ ├── copyright │ │ │ ├── postinst │ │ │ ├── postrm │ │ │ └── rules │ │ └── etc │ │ │ └── horizon │ │ │ └── hzn.json │ ├── horizon-control.tmpl │ └── horizon │ │ ├── DEBIAN │ │ ├── compat │ │ ├── copyright │ │ ├── postinst │ │ ├── postrm │ │ ├── prerm │ │ └── rules │ │ ├── etc │ │ └── horizon │ │ │ └── anax.json │ │ └── lib │ │ └── systemd │ │ └── system │ │ └── horizon.service ├── mac │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── key-gen │ │ └── horizon-cli-key.conf │ └── scripts │ │ ├── horizon-cli-uninstall.sh │ │ └── postinstall └── rpm │ ├── Makefile │ ├── README.md │ ├── horizon-cli │ ├── .gitignore │ ├── Makefile │ ├── fs │ │ ├── etc │ │ │ └── horizon │ │ │ │ └── hzn.json │ │ └── usr │ │ │ └── horizon │ │ │ └── copyright │ └── horizon-cli.spec │ └── horizon │ ├── .gitignore │ ├── Makefile │ ├── fs │ ├── etc │ │ └── horizon │ │ │ └── anax.json │ └── lib │ │ └── systemd │ │ └── system │ │ └── horizon.service │ └── horizon.spec ├── policy ├── agreement_protocol.go ├── agreement_protocol_test.go ├── api_spec_list.go ├── api_spec_list_test.go ├── blockchain.go ├── blockchain_test.go ├── data_verification.go ├── data_verification_test.go ├── node_health.go ├── policy.go ├── policy_file.go ├── policy_file_test.go ├── policy_manager.go ├── policy_manager_test.go ├── test │ ├── pfaccttest │ │ ├── acct1.policy │ │ └── acct2.policy │ ├── pfcompat1 │ │ └── testorg │ │ │ ├── agbot.policy │ │ │ └── device.policy │ ├── pfcompat2 │ │ ├── device1.policy │ │ ├── device2.policy │ │ ├── expecting.policy │ │ └── merged.policy │ ├── pfcreate │ │ ├── created.policy │ │ └── expecting.policy │ ├── pfduptest │ │ └── testorg │ │ │ ├── find.policy │ │ │ └── find2.policy │ ├── pffindtest │ │ └── testorg │ │ │ └── find.policy │ ├── pfincompat1 │ │ ├── agbot.policy │ │ └── device.policy │ ├── pfmatchtest │ │ └── testorg │ │ │ ├── find.policy │ │ │ ├── find2.policy │ │ │ └── find3.policy │ ├── pfmerge1 │ │ ├── agbot.policy │ │ ├── device.policy │ │ └── expecting.policy │ ├── pfmultiorg │ │ ├── testorg │ │ │ └── find.policy │ │ └── testorg2 │ │ │ ├── find.policy │ │ │ └── find3.policy │ ├── pftest │ │ ├── echo.policy │ │ ├── test1.policy │ │ └── test2.policy │ └── pfwatchtest │ │ └── testorg │ │ └── test1.policy ├── user_input.go ├── user_input_test.go ├── workload.go └── workload_test.go ├── producer ├── basic_protocol_handler.go └── producer_protocol_handler.go ├── resource ├── authenticate.go ├── authentication_credential.go ├── authentication_manager.go ├── certificate.go ├── commands.go ├── resource_manager.go ├── resource_worker.go ├── secret_api.go ├── secret_api_authenticate.go └── secrets_manager.go ├── semanticversion ├── version.go └── version_test.go ├── test ├── Makefile ├── README.md ├── docker │ ├── Dockerfile │ ├── docker_run.bash │ └── fs │ │ ├── etc │ │ ├── agent-in-kube │ │ │ ├── deployment.yaml.tmpl │ │ │ ├── deployment_nocert.yaml.tmpl │ │ │ ├── horizon.env │ │ │ └── persistent-claim.yaml │ │ └── colonus │ │ │ ├── anax-combined-no-cert.config.tmpl │ │ │ ├── anax-combined.config.tmpl │ │ │ ├── anax-combined2-no-cert.config.tmpl │ │ │ ├── anax-combined2.config.tmpl │ │ │ ├── anax-no-cert.config.tmpl │ │ │ └── anax.config.tmpl │ │ ├── helm │ │ └── hello │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── external │ │ │ ├── Makefile │ │ │ ├── external-hello │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ │ └── values.yaml │ │ │ └── horizon │ │ │ │ ├── service.definition.json │ │ │ │ └── userinput.json │ │ │ ├── service.sh │ │ │ └── start.sh │ │ ├── hzn │ │ └── service │ │ │ ├── README.md │ │ │ ├── cpu │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── service.sh │ │ │ └── start.sh │ │ │ ├── hello │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── server │ │ │ ├── server.go │ │ │ └── start.sh │ │ │ ├── leaf │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── service.sh │ │ │ └── start.sh │ │ │ └── usehello │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ └── start.sh │ │ ├── objects │ │ ├── basicres.policy │ │ └── multires.policy │ │ └── resources │ │ ├── private │ │ ├── basicres │ │ │ └── basic-resource.json │ │ └── multires │ │ │ ├── resource1.json │ │ │ └── resource2.json │ │ └── public │ │ └── public-resource.json └── gov │ ├── add_test_nodes.sh │ ├── agbot_apitest.sh │ ├── agbot_del_loop.sh │ ├── agbot_upgrade_test.sh │ ├── agp_apitest.sh │ ├── api_key.sh │ ├── apireg.sh │ ├── apitest.sh │ ├── build_old_anax.sh │ ├── check_node_status.sh │ ├── clean_css.sh │ ├── cs_apireg.sh │ ├── cs_apitest.sh │ ├── del_loop.sh │ ├── deploy_file.sh │ ├── deployment_policies │ └── userdev │ │ ├── bp_k8s_embedded_ns_update.json │ │ ├── bp_k8s_update.json │ │ ├── location.json │ │ ├── location_secrets.json │ │ ├── netspeed.json │ │ └── netspeed_secrets.json │ ├── gov-combined.sh │ ├── gpstest_apireg.sh │ ├── ha_test.sh │ ├── hello_apireg.sh │ ├── helm_package.sh │ ├── hzn_apikey.sh │ ├── hzn_compcheck.sh │ ├── hzn_dev_services.sh │ ├── hzn_mms_setup.sh │ ├── hzn_nmp.sh │ ├── hzn_reg.sh │ ├── hzn_secretsmanager.sh │ ├── init_exchange.sh │ ├── init_sync_service.sh │ ├── input_files │ ├── compcheck │ │ ├── business_pol_gpstest.json │ │ ├── business_pol_gpstest2.json │ │ ├── business_pol_k8s_service1.json │ │ ├── business_pol_location.json │ │ ├── business_pol_location_secrets.json │ │ ├── node_policy.json │ │ ├── node_policy2.json │ │ ├── node_ui.json │ │ ├── node_ui2.json │ │ ├── pattern_sloc.json │ │ ├── pattern_sloc_secrets.json │ │ ├── service_gpstest.json │ │ ├── service_location.json │ │ ├── service_location_secrets.json │ │ ├── service_location_secrets_extra.json │ │ ├── service_locgps.json │ │ ├── service_policy.json │ │ └── service_policy2.json │ └── k8s_deploy │ │ ├── k8s-mms-operator │ │ ├── k8s-mms-operator.tar.gz │ │ ├── node.policy.json │ │ └── node_ui.json │ │ ├── k8s-secret-operator │ │ ├── k8s-secret-operator.tar.gz │ │ ├── node.policy.json │ │ └── node_ui.json │ │ ├── node.policy.json │ │ ├── node_ui.json │ │ ├── topservice-operator-with-embedded-ns │ │ ├── node.policy.json │ │ ├── node_ui.json │ │ └── topservice-operator-with-embedded-ns.tar.gz │ │ ├── topservice-operator.tar.gz │ │ └── topservice-operator │ │ ├── node.policy.json │ │ ├── node_ui.json │ │ └── topservice-operator.tar.gz │ ├── loc2_apireg.sh │ ├── metering_apitest.sh │ ├── multiple_agents.sh │ ├── ns_apireg.sh │ ├── pattern_change.sh │ ├── patterns │ └── e2edev@somecomp.com │ │ ├── netspeed.json │ │ ├── netspeed_secrets.json │ │ ├── sall.json │ │ ├── sall_secrets.json │ │ ├── sk8s_secrets.json │ │ ├── sloc.json │ │ └── sloc_secrets.json │ ├── policy_change.sh │ ├── pws_apireg.sh │ ├── resource_package.sh │ ├── run_kube.sh │ ├── service_apireg.sh │ ├── service_apitest.sh │ ├── service_configstate_test.sh │ ├── service_defs │ ├── IBM │ │ ├── netspeed_2.3.0.json │ │ ├── netspeed_2.3.0_secrets.json │ │ ├── service-cpu_1.2.2.json │ │ └── service-cpu_1.2.2_secrets.json │ └── e2edev@somecomp.com │ │ ├── netspeed_2.3.0.json │ │ ├── netspeed_2.3.0_secrets.json │ │ ├── service-cpu_1.0.json │ │ └── service-cpu_1.0_secrets.json │ ├── service_log_test.sh │ ├── service_retry_test.sh │ ├── service_secrets_test.sh │ ├── service_upgrading_downgrading_test.sh │ ├── set_node_property.sh │ ├── setup_secrets.sh │ ├── sharedreg.sh │ ├── start_anax_loop.sh │ ├── start_gov.sh │ ├── start_mgmt_hub.sh │ ├── start_node.sh │ ├── stop_kube.sh │ ├── stop_mgmt_hub.sh │ ├── stop_multiple_agents.sh │ ├── swagger_validation.sh │ ├── sync_service_test.sh │ ├── unconfig_loop.sh │ ├── unregister.sh │ ├── utils.sh │ ├── vault_bootstrap.sh │ ├── vault_test.sh │ ├── verify_agreements.sh │ ├── verify_edge_cluster.sh │ └── verify_surfaced_error.sh ├── tools ├── arch-tag ├── copy-i18n-messages ├── image-exists ├── no-debug-pkg ├── unpack-i18n-messages └── update-i18n-messages ├── version └── version.go └── worker ├── worker.go ├── worker_status.go ├── worker_status_test.go └── worker_test.go /.github/ISSUE_TEMPLATE/Other.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other 3 | about: Something else 4 | 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/ISSUE_TEMPLATE/documentation-update.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/ISSUE_TEMPLATE/new-arch.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-distro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/ISSUE_TEMPLATE/new-distro.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/user-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/ISSUE_TEMPLATE/user-feedback.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/scripts/configure_versions_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/scripts/configure_versions_script.sh -------------------------------------------------------------------------------- /.github/scripts/package_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/scripts/package_push.sh -------------------------------------------------------------------------------- /.github/workflows/E2E-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/workflows/E2E-test.yml -------------------------------------------------------------------------------- /.github/workflows/build-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/workflows/build-push.yml -------------------------------------------------------------------------------- /.github/workflows/copyagentreadme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/workflows/copyagentreadme.yml -------------------------------------------------------------------------------- /.github/workflows/copydocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.github/workflows/copydocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/README.md -------------------------------------------------------------------------------- /abstractprotocol/cancel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/cancel.go -------------------------------------------------------------------------------- /abstractprotocol/datareceived.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/datareceived.go -------------------------------------------------------------------------------- /abstractprotocol/datareceivedack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/datareceivedack.go -------------------------------------------------------------------------------- /abstractprotocol/meteringnotification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/meteringnotification.go -------------------------------------------------------------------------------- /abstractprotocol/proposal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/proposal.go -------------------------------------------------------------------------------- /abstractprotocol/proposalreply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/proposalreply.go -------------------------------------------------------------------------------- /abstractprotocol/proposalreplyack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/proposalreplyack.go -------------------------------------------------------------------------------- /abstractprotocol/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/abstractprotocol/protocol.go -------------------------------------------------------------------------------- /agent-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/README.md -------------------------------------------------------------------------------- /agent-install/agent-auto-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/agent-auto-upgrade.sh -------------------------------------------------------------------------------- /agent-install/agent-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/agent-install.sh -------------------------------------------------------------------------------- /agent-install/agent-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/agent-uninstall.sh -------------------------------------------------------------------------------- /agent-install/edgeNodeFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/edgeNodeFiles.sh -------------------------------------------------------------------------------- /agent-install/k8s/auto-upgrade-cronjob-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/k8s/auto-upgrade-cronjob-template.yml -------------------------------------------------------------------------------- /agent-install/k8s/deployment-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/k8s/deployment-template.yml -------------------------------------------------------------------------------- /agent-install/k8s/persistentClaim-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/k8s/persistentClaim-template.yml -------------------------------------------------------------------------------- /agent-install/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/README.md -------------------------------------------------------------------------------- /agent-install/test/assertions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/assertions.sh -------------------------------------------------------------------------------- /agent-install/test/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/common.sh -------------------------------------------------------------------------------- /agent-install/test/config/agent-install.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/config/agent-install.cfg.template -------------------------------------------------------------------------------- /agent-install/test/config/node_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/config/node_policy.json -------------------------------------------------------------------------------- /agent-install/test/config/switch/agent-install.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/config/switch/agent-install.cfg.template -------------------------------------------------------------------------------- /agent-install/test/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/known-issues.md -------------------------------------------------------------------------------- /agent-install/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agent-install/test/test.sh -------------------------------------------------------------------------------- /agreement/agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreement/agreement.go -------------------------------------------------------------------------------- /agreement/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreement/commands.go -------------------------------------------------------------------------------- /agreement/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreement/node.go -------------------------------------------------------------------------------- /agreementbot/activecontracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/activecontracts.go -------------------------------------------------------------------------------- /agreementbot/agentfiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/agentfiles.go -------------------------------------------------------------------------------- /agreementbot/agreementbot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/agreementbot.go -------------------------------------------------------------------------------- /agreementbot/agreementworker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/agreementworker.go -------------------------------------------------------------------------------- /agreementbot/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/api.go -------------------------------------------------------------------------------- /agreementbot/basic_agreement_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/basic_agreement_worker.go -------------------------------------------------------------------------------- /agreementbot/basic_protocol_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/basic_protocol_handler.go -------------------------------------------------------------------------------- /agreementbot/businesspol_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/businesspol_manager.go -------------------------------------------------------------------------------- /agreementbot/changes_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/changes_worker.go -------------------------------------------------------------------------------- /agreementbot/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/commands.go -------------------------------------------------------------------------------- /agreementbot/consumer_protocol_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/consumer_protocol_handler.go -------------------------------------------------------------------------------- /agreementbot/consumer_protocol_handler_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/consumer_protocol_handler_manager.go -------------------------------------------------------------------------------- /agreementbot/governance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/governance.go -------------------------------------------------------------------------------- /agreementbot/governance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/governance_test.go -------------------------------------------------------------------------------- /agreementbot/lock_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/lock_manager.go -------------------------------------------------------------------------------- /agreementbot/lock_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/lock_manager_test.go -------------------------------------------------------------------------------- /agreementbot/node_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/node_search.go -------------------------------------------------------------------------------- /agreementbot/nodehealth_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/nodehealth_manager.go -------------------------------------------------------------------------------- /agreementbot/nodehealth_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/nodehealth_manager_test.go -------------------------------------------------------------------------------- /agreementbot/object_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/object_manager.go -------------------------------------------------------------------------------- /agreementbot/object_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/object_manager_test.go -------------------------------------------------------------------------------- /agreementbot/pattern_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/pattern_manager.go -------------------------------------------------------------------------------- /agreementbot/pattern_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/pattern_manager_test.go -------------------------------------------------------------------------------- /agreementbot/persistence/agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/agreement.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/agreement.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/ha_group_node_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/ha_group_node_management.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/ha_group_workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/ha_group_workload.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/init.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/partition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/partition.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/search_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/search_session.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/secrets.go -------------------------------------------------------------------------------- /agreementbot/persistence/bolt/workload_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/bolt/workload_usage.go -------------------------------------------------------------------------------- /agreementbot/persistence/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/database.go -------------------------------------------------------------------------------- /agreementbot/persistence/ha_group_node_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/ha_group_node_management.go -------------------------------------------------------------------------------- /agreementbot/persistence/ha_group_workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/ha_group_workload.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/agreement.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/ha_group_node_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/ha_group_node_management.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/ha_group_workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/ha_group_workload.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/init.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/partition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/partition.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/search_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/search_session.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/secrets.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/version.go -------------------------------------------------------------------------------- /agreementbot/persistence/postgresql/workload_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/postgresql/workload_usage.go -------------------------------------------------------------------------------- /agreementbot/persistence/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/registry.go -------------------------------------------------------------------------------- /agreementbot/persistence/workload_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/persistence/workload_usage.go -------------------------------------------------------------------------------- /agreementbot/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/policy.go -------------------------------------------------------------------------------- /agreementbot/prioritized_workqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/prioritized_workqueue.go -------------------------------------------------------------------------------- /agreementbot/prioritized_workqueue_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/prioritized_workqueue_stats.go -------------------------------------------------------------------------------- /agreementbot/prioritized_workqueue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/prioritized_workqueue_test.go -------------------------------------------------------------------------------- /agreementbot/secret_updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secret_updater.go -------------------------------------------------------------------------------- /agreementbot/secret_updater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secret_updater_test.go -------------------------------------------------------------------------------- /agreementbot/secrets/plugin_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secrets/plugin_errors.go -------------------------------------------------------------------------------- /agreementbot/secrets/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secrets/registry.go -------------------------------------------------------------------------------- /agreementbot/secrets/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secrets/secrets.go -------------------------------------------------------------------------------- /agreementbot/secrets/vault/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secrets/vault/http.go -------------------------------------------------------------------------------- /agreementbot/secrets/vault/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secrets/vault/init.go -------------------------------------------------------------------------------- /agreementbot/secrets/vault/vault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secrets/vault/vault.go -------------------------------------------------------------------------------- /agreementbot/secure_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/agreementbot/secure_api.go -------------------------------------------------------------------------------- /anax-in-container/Dockerfile.alpine.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/Dockerfile.alpine.amd64 -------------------------------------------------------------------------------- /anax-in-container/Dockerfile.ubi.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/Dockerfile.ubi.amd64 -------------------------------------------------------------------------------- /anax-in-container/Dockerfile.ubi.arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/Dockerfile.ubi.arm64 -------------------------------------------------------------------------------- /anax-in-container/Dockerfile.ubi.ppc64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/Dockerfile.ubi.ppc64el -------------------------------------------------------------------------------- /anax-in-container/Dockerfile.ubi.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/Dockerfile.ubi.s390x -------------------------------------------------------------------------------- /anax-in-container/Dockerfile_agbot.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/Dockerfile_agbot.ubi -------------------------------------------------------------------------------- /anax-in-container/EPEL.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/EPEL.repo -------------------------------------------------------------------------------- /anax-in-container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/README.md -------------------------------------------------------------------------------- /anax-in-container/config/agbot.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/config/agbot.json.tmpl -------------------------------------------------------------------------------- /anax-in-container/config/anax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/config/anax.json -------------------------------------------------------------------------------- /anax-in-container/config/hzn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/config/hzn.json -------------------------------------------------------------------------------- /anax-in-container/horizon-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/horizon-container -------------------------------------------------------------------------------- /anax-in-container/script/agbot_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/script/agbot_start.sh -------------------------------------------------------------------------------- /anax-in-container/script/anax.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-container/script/anax.service -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.amd64 -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.arm64 -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.amd64 -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.arm64 -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.ppc64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.ppc64el -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.auto-upgrade-cron.s390x -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.ppc64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.ppc64el -------------------------------------------------------------------------------- /anax-in-k8s/Dockerfile.ubi.s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/Dockerfile.ubi.s390x -------------------------------------------------------------------------------- /anax-in-k8s/EPEL.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/EPEL.repo -------------------------------------------------------------------------------- /anax-in-k8s/config/anax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/config/anax.json -------------------------------------------------------------------------------- /anax-in-k8s/config/hzn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/config/hzn.json -------------------------------------------------------------------------------- /anax-in-k8s/cronjobs/auto-upgrade-cronjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/cronjobs/auto-upgrade-cronjob.sh -------------------------------------------------------------------------------- /anax-in-k8s/script/anax.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/anax-in-k8s/script/anax.service -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api.go -------------------------------------------------------------------------------- /api/api_agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_agreement.go -------------------------------------------------------------------------------- /api/api_attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_attribute.go -------------------------------------------------------------------------------- /api/api_eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_eventlog.go -------------------------------------------------------------------------------- /api/api_int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_int_test.go -------------------------------------------------------------------------------- /api/api_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_management.go -------------------------------------------------------------------------------- /api/api_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_node.go -------------------------------------------------------------------------------- /api/api_publickey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_publickey.go -------------------------------------------------------------------------------- /api/api_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_service.go -------------------------------------------------------------------------------- /api/api_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_status.go -------------------------------------------------------------------------------- /api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_test.go -------------------------------------------------------------------------------- /api/api_token_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/api_token_random.go -------------------------------------------------------------------------------- /api/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/common_test.go -------------------------------------------------------------------------------- /api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/errors.go -------------------------------------------------------------------------------- /api/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/errors_test.go -------------------------------------------------------------------------------- /api/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/input.go -------------------------------------------------------------------------------- /api/input_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/input_validation.go -------------------------------------------------------------------------------- /api/input_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/input_validation_test.go -------------------------------------------------------------------------------- /api/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/messages.go -------------------------------------------------------------------------------- /api/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/output.go -------------------------------------------------------------------------------- /api/output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/output_test.go -------------------------------------------------------------------------------- /api/path_agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_agreement.go -------------------------------------------------------------------------------- /api/path_agreement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_agreement_test.go -------------------------------------------------------------------------------- /api/path_attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_attributes.go -------------------------------------------------------------------------------- /api/path_eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_eventlog.go -------------------------------------------------------------------------------- /api/path_eventlog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_eventlog_test.go -------------------------------------------------------------------------------- /api/path_management_nextjob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_management_nextjob.go -------------------------------------------------------------------------------- /api/path_management_nextjob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_management_nextjob_test.go -------------------------------------------------------------------------------- /api/path_management_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_management_status.go -------------------------------------------------------------------------------- /api/path_management_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_management_status_test.go -------------------------------------------------------------------------------- /api/path_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_node.go -------------------------------------------------------------------------------- /api/path_node_configstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_node_configstate.go -------------------------------------------------------------------------------- /api/path_node_configstate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_node_configstate_test.go -------------------------------------------------------------------------------- /api/path_node_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_node_policy.go -------------------------------------------------------------------------------- /api/path_node_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_node_policy_test.go -------------------------------------------------------------------------------- /api/path_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_node_test.go -------------------------------------------------------------------------------- /api/path_node_userinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_node_userinput.go -------------------------------------------------------------------------------- /api/path_publickey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_publickey.go -------------------------------------------------------------------------------- /api/path_publickey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_publickey_test.go -------------------------------------------------------------------------------- /api/path_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_service.go -------------------------------------------------------------------------------- /api/path_service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_service_config.go -------------------------------------------------------------------------------- /api/path_service_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_service_config_test.go -------------------------------------------------------------------------------- /api/path_service_configstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_service_configstate.go -------------------------------------------------------------------------------- /api/path_service_configstate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/api/path_service_configstate_test.go -------------------------------------------------------------------------------- /apicommon/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/apicommon/status.go -------------------------------------------------------------------------------- /apicommon/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/apicommon/status_test.go -------------------------------------------------------------------------------- /basicprotocol/diagrams/horizonSequenceDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/basicprotocol/diagrams/horizonSequenceDiagram.png -------------------------------------------------------------------------------- /basicprotocol/diagrams/horizonSequenceDiagram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/basicprotocol/diagrams/horizonSequenceDiagram.txt -------------------------------------------------------------------------------- /basicprotocol/diagrams/protocolSequenceDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/basicprotocol/diagrams/protocolSequenceDiagram.png -------------------------------------------------------------------------------- /basicprotocol/diagrams/protocolSequenceDiagram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/basicprotocol/diagrams/protocolSequenceDiagram.txt -------------------------------------------------------------------------------- /basicprotocol/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/basicprotocol/protocol.go -------------------------------------------------------------------------------- /businesspolicy/business_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/businesspolicy/business_policy.go -------------------------------------------------------------------------------- /businesspolicy/business_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/businesspolicy/business_policy_test.go -------------------------------------------------------------------------------- /cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cache/cache.go -------------------------------------------------------------------------------- /cache/simple_map_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cache/simple_map_cache.go -------------------------------------------------------------------------------- /changes/changes_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/changes/changes_worker.go -------------------------------------------------------------------------------- /changes/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/changes/commands.go -------------------------------------------------------------------------------- /cli/agreement/agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/agreement/agreement.go -------------------------------------------------------------------------------- /cli/agreementbot/agreement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/agreementbot/agreement.go -------------------------------------------------------------------------------- /cli/agreementbot/getcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/agreementbot/getcache.go -------------------------------------------------------------------------------- /cli/agreementbot/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/agreementbot/node.go -------------------------------------------------------------------------------- /cli/agreementbot/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/agreementbot/policy.go -------------------------------------------------------------------------------- /cli/attribute/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/attribute/attribute.go -------------------------------------------------------------------------------- /cli/cliconfig/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/cliconfig/config.go -------------------------------------------------------------------------------- /cli/cliconfig/hzn.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/cliconfig/hzn.json.tmpl -------------------------------------------------------------------------------- /cli/cliutils/cliutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/cliutils/cliutils.go -------------------------------------------------------------------------------- /cli/cliutils/cliutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/cliutils/cliutils_test.go -------------------------------------------------------------------------------- /cli/cliutils/stdout_logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/cliutils/stdout_logging.go -------------------------------------------------------------------------------- /cli/deploycheck/allcomp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/deploycheck/allcomp.go -------------------------------------------------------------------------------- /cli/deploycheck/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/deploycheck/policy.go -------------------------------------------------------------------------------- /cli/deploycheck/secretbinding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/deploycheck/secretbinding.go -------------------------------------------------------------------------------- /cli/deploycheck/userinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/deploycheck/userinput.go -------------------------------------------------------------------------------- /cli/dev/dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/dependency.go -------------------------------------------------------------------------------- /cli/dev/hznenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/hznenv.go -------------------------------------------------------------------------------- /cli/dev/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/image.go -------------------------------------------------------------------------------- /cli/dev/patterndefinition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/patterndefinition.go -------------------------------------------------------------------------------- /cli/dev/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/secrets.go -------------------------------------------------------------------------------- /cli/dev/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/service.go -------------------------------------------------------------------------------- /cli/dev/servicedefinition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/servicedefinition.go -------------------------------------------------------------------------------- /cli/dev/servicepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/servicepolicy.go -------------------------------------------------------------------------------- /cli/dev/sourcemanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/sourcemanager.go -------------------------------------------------------------------------------- /cli/dev/userinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/userinput.go -------------------------------------------------------------------------------- /cli/dev/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/utils.go -------------------------------------------------------------------------------- /cli/dev/utils_int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/utils_int_test.go -------------------------------------------------------------------------------- /cli/dev/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/dev/utils_test.go -------------------------------------------------------------------------------- /cli/eventlog/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/eventlog/eventlog.go -------------------------------------------------------------------------------- /cli/exchange/agbot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/agbot.go -------------------------------------------------------------------------------- /cli/exchange/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/apikey.go -------------------------------------------------------------------------------- /cli/exchange/business.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/business.go -------------------------------------------------------------------------------- /cli/exchange/business_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/business_test.go -------------------------------------------------------------------------------- /cli/exchange/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/catalog.go -------------------------------------------------------------------------------- /cli/exchange/ha_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/ha_group.go -------------------------------------------------------------------------------- /cli/exchange/nmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/nmp.go -------------------------------------------------------------------------------- /cli/exchange/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/node.go -------------------------------------------------------------------------------- /cli/exchange/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/org.go -------------------------------------------------------------------------------- /cli/exchange/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/pattern.go -------------------------------------------------------------------------------- /cli/exchange/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/service.go -------------------------------------------------------------------------------- /cli/exchange/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/status.go -------------------------------------------------------------------------------- /cli/exchange/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/user.go -------------------------------------------------------------------------------- /cli/exchange/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/exchange/version.go -------------------------------------------------------------------------------- /cli/fdo/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/fdo/key.go -------------------------------------------------------------------------------- /cli/fdo/voucher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/fdo/voucher.go -------------------------------------------------------------------------------- /cli/helm_deployment/helm_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/helm_deployment/helm_deployment.go -------------------------------------------------------------------------------- /cli/hzn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/hzn.go -------------------------------------------------------------------------------- /cli/i18n_messages/catalog_empty.go: -------------------------------------------------------------------------------- 1 | package i18n_messages 2 | -------------------------------------------------------------------------------- /cli/key/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/key/key.go -------------------------------------------------------------------------------- /cli/kube_deployment/kube_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/kube_deployment/kube_deployment.go -------------------------------------------------------------------------------- /cli/locales/de/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/de/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/es/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/es/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/fr/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/fr/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/it/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/it/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/ja/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/ja/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/ko/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/ko/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/pt-BR/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/pt-BR/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/zh-CN/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/zh-CN/messages.gotext.json -------------------------------------------------------------------------------- /cli/locales/zh-TW/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/locales/zh-TW/messages.gotext.json -------------------------------------------------------------------------------- /cli/metering/metering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/metering/metering.go -------------------------------------------------------------------------------- /cli/native_deployment/native_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/native_deployment/native_deployment.go -------------------------------------------------------------------------------- /cli/nm_status/nm_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/nm_status/nm_status.go -------------------------------------------------------------------------------- /cli/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/node/node.go -------------------------------------------------------------------------------- /cli/node_management/agentfiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/node_management/agentfiles.go -------------------------------------------------------------------------------- /cli/node_management/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/node_management/manifest.go -------------------------------------------------------------------------------- /cli/plugin_registry/plugin_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/plugin_registry/plugin_context.go -------------------------------------------------------------------------------- /cli/plugin_registry/plugin_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/plugin_registry/plugin_registry.go -------------------------------------------------------------------------------- /cli/policy/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/policy/policy.go -------------------------------------------------------------------------------- /cli/register/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/register/register.go -------------------------------------------------------------------------------- /cli/register/servicewait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/register/servicewait.go -------------------------------------------------------------------------------- /cli/samples/business_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/business_policy.json -------------------------------------------------------------------------------- /cli/samples/insert-service-into-pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/insert-service-into-pattern.json -------------------------------------------------------------------------------- /cli/samples/node_policy_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/node_policy_input.json -------------------------------------------------------------------------------- /cli/samples/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/pattern.json -------------------------------------------------------------------------------- /cli/samples/privileged_node_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/privileged_node_policy.json -------------------------------------------------------------------------------- /cli/samples/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/service.json -------------------------------------------------------------------------------- /cli/samples/service_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/service_cluster.json -------------------------------------------------------------------------------- /cli/samples/user_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/samples/user_input.json -------------------------------------------------------------------------------- /cli/secrets_manager/secrets_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/secrets_manager/secrets_manager.go -------------------------------------------------------------------------------- /cli/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/service/service.go -------------------------------------------------------------------------------- /cli/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/status/status.go -------------------------------------------------------------------------------- /cli/sync_service/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/sync_service/download.go -------------------------------------------------------------------------------- /cli/sync_service/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/sync_service/names.go -------------------------------------------------------------------------------- /cli/sync_service/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/sync_service/object.go -------------------------------------------------------------------------------- /cli/sync_service/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/sync_service/status.go -------------------------------------------------------------------------------- /cli/sync_service/sync_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/sync_service/sync_service.go -------------------------------------------------------------------------------- /cli/unregister/unregister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/unregister/unregister.go -------------------------------------------------------------------------------- /cli/userinput/userinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/userinput/userinput.go -------------------------------------------------------------------------------- /cli/utilcmds/utilcmds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cli/utilcmds/utilcmds.go -------------------------------------------------------------------------------- /clusterupgrade/cluster_install_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/clusterupgrade/cluster_install_files.go -------------------------------------------------------------------------------- /clusterupgrade/cluster_upgrade_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/clusterupgrade/cluster_upgrade_worker.go -------------------------------------------------------------------------------- /clusterupgrade/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/clusterupgrade/commands.go -------------------------------------------------------------------------------- /clusterupgrade/kubeClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/clusterupgrade/kubeClient.go -------------------------------------------------------------------------------- /common/deploymentconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/common/deploymentconfig.go -------------------------------------------------------------------------------- /common/node_management.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/common/node_management.go -------------------------------------------------------------------------------- /common/pattern_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/common/pattern_file.go -------------------------------------------------------------------------------- /common/service_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/common/service_file.go -------------------------------------------------------------------------------- /common/userinput_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/common/userinput_file.go -------------------------------------------------------------------------------- /compcheck/comp_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/comp_check.go -------------------------------------------------------------------------------- /compcheck/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/pattern.go -------------------------------------------------------------------------------- /compcheck/policy_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/policy_check.go -------------------------------------------------------------------------------- /compcheck/policy_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/policy_check_test.go -------------------------------------------------------------------------------- /compcheck/secretbinding_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/secretbinding_check.go -------------------------------------------------------------------------------- /compcheck/secretbinding_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/secretbinding_check_test.go -------------------------------------------------------------------------------- /compcheck/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/service.go -------------------------------------------------------------------------------- /compcheck/userinput_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/userinput_check.go -------------------------------------------------------------------------------- /compcheck/userinput_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/compcheck/userinput_check_test.go -------------------------------------------------------------------------------- /config/archsynonyms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/archsynonyms.go -------------------------------------------------------------------------------- /config/collaborators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/collaborators.go -------------------------------------------------------------------------------- /config/collaborators_int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/collaborators_int_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/config_test.go -------------------------------------------------------------------------------- /config/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/constants.go -------------------------------------------------------------------------------- /config/file_sync_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/file_sync_service.go -------------------------------------------------------------------------------- /config/file_sync_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/file_sync_service_test.go -------------------------------------------------------------------------------- /config/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/config/postgresql.go -------------------------------------------------------------------------------- /container/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/container/commands.go -------------------------------------------------------------------------------- /container/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/container/container.go -------------------------------------------------------------------------------- /container/container_int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/container/container_int_test.go -------------------------------------------------------------------------------- /container/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/container/container_test.go -------------------------------------------------------------------------------- /containermessage/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/containermessage/models.go -------------------------------------------------------------------------------- /containermessage/models_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/containermessage/models_test.go -------------------------------------------------------------------------------- /css/cmd/cloud-sync-service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/css/cmd/cloud-sync-service/main.go -------------------------------------------------------------------------------- /css/config/sync.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/css/config/sync.conf.tmpl -------------------------------------------------------------------------------- /css/horizonAuthenticate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/css/horizonAuthenticate.go -------------------------------------------------------------------------------- /css/image/cloud-sync-service-amd64/Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/css/image/cloud-sync-service-amd64/Dockerfile.ubi -------------------------------------------------------------------------------- /css/image/cloud-sync-service-arm64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/css/image/cloud-sync-service-arm64/Dockerfile -------------------------------------------------------------------------------- /css/image/cloud-sync-service-armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/css/image/cloud-sync-service-armhf/Dockerfile -------------------------------------------------------------------------------- /css/script/css_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/css/script/css_start.sh -------------------------------------------------------------------------------- /cutil/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cutil/cluster.go -------------------------------------------------------------------------------- /cutil/cutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cutil/cutil.go -------------------------------------------------------------------------------- /cutil/cutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cutil/cutil_test.go -------------------------------------------------------------------------------- /cutil/mms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cutil/mms.go -------------------------------------------------------------------------------- /cutil/test/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cutil/test/cpuinfo -------------------------------------------------------------------------------- /cutil/test/meminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/cutil/test/meminfo -------------------------------------------------------------------------------- /docs/agbot_secure_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/agbot_secure_api.json -------------------------------------------------------------------------------- /docs/agent_container_manual_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/agent_container_manual_deploy.md -------------------------------------------------------------------------------- /docs/agent_in_multi_namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/agent_in_multi_namespace.md -------------------------------------------------------------------------------- /docs/agentfile_manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/agentfile_manifest.md -------------------------------------------------------------------------------- /docs/agreement_bot_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/agreement_bot_api.md -------------------------------------------------------------------------------- /docs/all-in-1-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/all-in-1-setup.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/attributes.md -------------------------------------------------------------------------------- /docs/authentication_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/authentication_overview.md -------------------------------------------------------------------------------- /docs/built_in_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/built_in_policy.md -------------------------------------------------------------------------------- /docs/cluster_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/cluster_install.md -------------------------------------------------------------------------------- /docs/deployment_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/deployment_policy.md -------------------------------------------------------------------------------- /docs/deployment_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/deployment_string.md -------------------------------------------------------------------------------- /docs/ha_groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/ha_groups.md -------------------------------------------------------------------------------- /docs/ha_groups_2.1.0-agreement-establishment.sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/ha_groups_2.1.0-agreement-establishment.sequence -------------------------------------------------------------------------------- /docs/ha_groups_2.1.0-workload-updates.sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/ha_groups_2.1.0-workload-updates.sequence -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/managed_workloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/managed_workloads.md -------------------------------------------------------------------------------- /docs/mms_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/mms_swagger.json -------------------------------------------------------------------------------- /docs/model_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/model_policy.md -------------------------------------------------------------------------------- /docs/node_management_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/node_management_overview.md -------------------------------------------------------------------------------- /docs/node_management_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/node_management_policy.md -------------------------------------------------------------------------------- /docs/node_management_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/node_management_status.md -------------------------------------------------------------------------------- /docs/node_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/node_policy.md -------------------------------------------------------------------------------- /docs/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/policy.md -------------------------------------------------------------------------------- /docs/properties_and_constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/properties_and_constraints.md -------------------------------------------------------------------------------- /docs/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/secrets.md -------------------------------------------------------------------------------- /docs/service_def.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/docs/service_def.md -------------------------------------------------------------------------------- /download/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/download/commands.go -------------------------------------------------------------------------------- /download/download_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/download/download_worker.go -------------------------------------------------------------------------------- /download/download_worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/download/download_worker_test.go -------------------------------------------------------------------------------- /ess/HZNDEVAuthenticate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/HZNDEVAuthenticate.go -------------------------------------------------------------------------------- /ess/cmd/edge-sync-service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/cmd/edge-sync-service/main.go -------------------------------------------------------------------------------- /ess/image/edge-sync-service-amd64/Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/image/edge-sync-service-amd64/Dockerfile.ubi -------------------------------------------------------------------------------- /ess/image/edge-sync-service-arm64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/image/edge-sync-service-arm64/Dockerfile -------------------------------------------------------------------------------- /ess/image/edge-sync-service-arm64/Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/image/edge-sync-service-arm64/Dockerfile.ubi -------------------------------------------------------------------------------- /ess/image/edge-sync-service-armhf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/image/edge-sync-service-armhf/Dockerfile -------------------------------------------------------------------------------- /ess/image/edge-sync-service-ppc64el/Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/image/edge-sync-service-ppc64el/Dockerfile.ubi -------------------------------------------------------------------------------- /ess/image/edge-sync-service-ppc64el/Dockerfile.ubi.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/image/edge-sync-service-ppc64el/Dockerfile.ubi.old -------------------------------------------------------------------------------- /ess/image/edge-sync-service-s390x/Dockerfile.ubi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/ess/image/edge-sync-service-s390x/Dockerfile.ubi -------------------------------------------------------------------------------- /eventlog/eventlog_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/eventlog/eventlog_manager.go -------------------------------------------------------------------------------- /eventlog/eventlog_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/eventlog/eventlog_manager_test.go -------------------------------------------------------------------------------- /events/event_state_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/events/event_state_manager.go -------------------------------------------------------------------------------- /events/event_state_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/events/event_state_manager_test.go -------------------------------------------------------------------------------- /events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/events/events.go -------------------------------------------------------------------------------- /events/secret_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/events/secret_events.go -------------------------------------------------------------------------------- /events/secret_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/events/secret_events_test.go -------------------------------------------------------------------------------- /exchange/agbot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/agbot.go -------------------------------------------------------------------------------- /exchange/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/cache.go -------------------------------------------------------------------------------- /exchange/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/cache_test.go -------------------------------------------------------------------------------- /exchange/changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/changes.go -------------------------------------------------------------------------------- /exchange/css.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/css.go -------------------------------------------------------------------------------- /exchange/diagrams/receiverEncryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/diagrams/receiverEncryption.png -------------------------------------------------------------------------------- /exchange/diagrams/receiverEncryption.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/diagrams/receiverEncryption.txt -------------------------------------------------------------------------------- /exchange/diagrams/senderEncryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/diagrams/senderEncryption.png -------------------------------------------------------------------------------- /exchange/diagrams/senderEncryption.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/diagrams/senderEncryption.txt -------------------------------------------------------------------------------- /exchange/ha_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/ha_group.go -------------------------------------------------------------------------------- /exchange/ha_group_agbot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/ha_group_agbot.go -------------------------------------------------------------------------------- /exchange/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/handlers.go -------------------------------------------------------------------------------- /exchange/message_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/message_worker.go -------------------------------------------------------------------------------- /exchange/messaging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/messaging.go -------------------------------------------------------------------------------- /exchange/messaging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/messaging_test.go -------------------------------------------------------------------------------- /exchange/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/node.go -------------------------------------------------------------------------------- /exchange/node_management_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/node_management_policy.go -------------------------------------------------------------------------------- /exchange/node_management_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/node_management_status.go -------------------------------------------------------------------------------- /exchange/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/org.go -------------------------------------------------------------------------------- /exchange/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/pattern.go -------------------------------------------------------------------------------- /exchange/pattern_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/pattern_test.go -------------------------------------------------------------------------------- /exchange/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/policy.go -------------------------------------------------------------------------------- /exchange/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/rpc.go -------------------------------------------------------------------------------- /exchange/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/search.go -------------------------------------------------------------------------------- /exchange/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/secret.go -------------------------------------------------------------------------------- /exchange/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/service.go -------------------------------------------------------------------------------- /exchange/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchange/service_test.go -------------------------------------------------------------------------------- /exchangecommon/agentfiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/agentfiles.go -------------------------------------------------------------------------------- /exchangecommon/ha_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/ha_group.go -------------------------------------------------------------------------------- /exchangecommon/node_management_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/node_management_policy.go -------------------------------------------------------------------------------- /exchangecommon/node_management_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/node_management_status.go -------------------------------------------------------------------------------- /exchangecommon/nodepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/nodepolicy.go -------------------------------------------------------------------------------- /exchangecommon/nodepolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/nodepolicy_test.go -------------------------------------------------------------------------------- /exchangecommon/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/secret.go -------------------------------------------------------------------------------- /exchangecommon/secret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/secret_test.go -------------------------------------------------------------------------------- /exchangecommon/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/service.go -------------------------------------------------------------------------------- /exchangecommon/servicepolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangecommon/servicepolicy.go -------------------------------------------------------------------------------- /exchangesync/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangesync/node.go -------------------------------------------------------------------------------- /exchangesync/node_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangesync/node_policy.go -------------------------------------------------------------------------------- /exchangesync/node_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangesync/node_policy_test.go -------------------------------------------------------------------------------- /exchangesync/surface_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangesync/surface_errors.go -------------------------------------------------------------------------------- /exchangesync/test/nodepolicy_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangesync/test/nodepolicy_bad.json -------------------------------------------------------------------------------- /exchangesync/test/nodepolicy_test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangesync/test/nodepolicy_test1.json -------------------------------------------------------------------------------- /exchangesync/user_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/exchangesync/user_input.go -------------------------------------------------------------------------------- /externalpolicy/builtin_properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/builtin_properties.go -------------------------------------------------------------------------------- /externalpolicy/constraint_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/constraint_expression.go -------------------------------------------------------------------------------- /externalpolicy/constraint_expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/constraint_expression_test.go -------------------------------------------------------------------------------- /externalpolicy/counter_party_properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/counter_party_properties.go -------------------------------------------------------------------------------- /externalpolicy/counter_party_properties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/counter_party_properties_test.go -------------------------------------------------------------------------------- /externalpolicy/external_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/external_policy.go -------------------------------------------------------------------------------- /externalpolicy/external_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/external_policy_test.go -------------------------------------------------------------------------------- /externalpolicy/plugin_registry/plugin_registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/plugin_registry/plugin_registry.go -------------------------------------------------------------------------------- /externalpolicy/property_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/property_list.go -------------------------------------------------------------------------------- /externalpolicy/property_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/property_list_test.go -------------------------------------------------------------------------------- /externalpolicy/text_language/text_language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/text_language/text_language.go -------------------------------------------------------------------------------- /externalpolicy/text_language/text_language_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/externalpolicy/text_language/text_language_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/go.sum -------------------------------------------------------------------------------- /governance/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/commands.go -------------------------------------------------------------------------------- /governance/governance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/governance.go -------------------------------------------------------------------------------- /governance/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/messages.go -------------------------------------------------------------------------------- /governance/microservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/microservice.go -------------------------------------------------------------------------------- /governance/microservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/microservice_test.go -------------------------------------------------------------------------------- /governance/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/node.go -------------------------------------------------------------------------------- /governance/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/node_test.go -------------------------------------------------------------------------------- /governance/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/policy.go -------------------------------------------------------------------------------- /governance/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/shutdown.go -------------------------------------------------------------------------------- /governance/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/status.go -------------------------------------------------------------------------------- /governance/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/governance/status_test.go -------------------------------------------------------------------------------- /helm/cliclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/helm/cliclient.go -------------------------------------------------------------------------------- /helm/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/helm/client.go -------------------------------------------------------------------------------- /helm/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/helm/client_test.go -------------------------------------------------------------------------------- /helm/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/helm/commands.go -------------------------------------------------------------------------------- /helm/helmworker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/helm/helmworker.go -------------------------------------------------------------------------------- /i18n/message_printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n/message_printer.go -------------------------------------------------------------------------------- /i18n/message_printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n/message_printer_test.go -------------------------------------------------------------------------------- /i18n_messages/catalog_empty.go: -------------------------------------------------------------------------------- 1 | package i18n_messages 2 | -------------------------------------------------------------------------------- /i18n_translation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/README -------------------------------------------------------------------------------- /i18n_translation/anax.out.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/anax.out.gotext.json -------------------------------------------------------------------------------- /i18n_translation/hzn.out.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/hzn.out.gotext.json -------------------------------------------------------------------------------- /i18n_translation/original/anax.out.gotext.json.auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/original/anax.out.gotext.json.auto -------------------------------------------------------------------------------- /i18n_translation/original/hzn.out.gotext.json.auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/original/hzn.out.gotext.json.auto -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_de.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_es.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_fr.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_it.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_ja.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_ko.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_pt_BR.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_zh_CN.json -------------------------------------------------------------------------------- /i18n_translation/translated/anax.out.gotext_zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/anax.out.gotext_zh_TW.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_de.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_es.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_fr.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_it.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_ja.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_ko.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_pt_BR.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_zh_CN.json -------------------------------------------------------------------------------- /i18n_translation/translated/hzn.out.gotext_zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/i18n_translation/translated/hzn.out.gotext_zh_TW.json -------------------------------------------------------------------------------- /imagefetch/image_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/imagefetch/image_process.go -------------------------------------------------------------------------------- /imagefetch/image_process_int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/imagefetch/image_process_int_test.go -------------------------------------------------------------------------------- /imagefetch/image_process_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/imagefetch/image_process_test.go -------------------------------------------------------------------------------- /imagefetch/imagepull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/imagefetch/imagepull.go -------------------------------------------------------------------------------- /imagefetch/imagepull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/imagefetch/imagepull_test.go -------------------------------------------------------------------------------- /imagefetch/test/docker_auths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/imagefetch/test/docker_auths.json -------------------------------------------------------------------------------- /kube_operator/api_objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/kube_operator/api_objects.go -------------------------------------------------------------------------------- /kube_operator/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/kube_operator/client.go -------------------------------------------------------------------------------- /kube_operator/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/kube_operator/commands.go -------------------------------------------------------------------------------- /kube_operator/kubeworker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/kube_operator/kubeworker.go -------------------------------------------------------------------------------- /locales/de/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/de/messages.gotext.json -------------------------------------------------------------------------------- /locales/es/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/es/messages.gotext.json -------------------------------------------------------------------------------- /locales/fr/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/fr/messages.gotext.json -------------------------------------------------------------------------------- /locales/it/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/it/messages.gotext.json -------------------------------------------------------------------------------- /locales/ja/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/ja/messages.gotext.json -------------------------------------------------------------------------------- /locales/ko/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/ko/messages.gotext.json -------------------------------------------------------------------------------- /locales/pt-BR/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/pt-BR/messages.gotext.json -------------------------------------------------------------------------------- /locales/zh-CN/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/zh-CN/messages.gotext.json -------------------------------------------------------------------------------- /locales/zh-TW/messages.gotext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/locales/zh-TW/messages.gotext.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/main.go -------------------------------------------------------------------------------- /metering/metering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/metering/metering.go -------------------------------------------------------------------------------- /metering/metering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/metering/metering_test.go -------------------------------------------------------------------------------- /microservice/microservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/microservice/microservice.go -------------------------------------------------------------------------------- /microservice/microservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/microservice/microservice_test.go -------------------------------------------------------------------------------- /nodemanagement/agent_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/nodemanagement/agent_upgrade.go -------------------------------------------------------------------------------- /nodemanagement/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/nodemanagement/commands.go -------------------------------------------------------------------------------- /nodemanagement/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/nodemanagement/messages.go -------------------------------------------------------------------------------- /nodemanagement/node_management_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/nodemanagement/node_management_worker.go -------------------------------------------------------------------------------- /nodemanagement/node_management_worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/nodemanagement/node_management_worker_test.go -------------------------------------------------------------------------------- /persistence/attribute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/attribute_types.go -------------------------------------------------------------------------------- /persistence/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/attributes.go -------------------------------------------------------------------------------- /persistence/container_volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/container_volumes.go -------------------------------------------------------------------------------- /persistence/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/device.go -------------------------------------------------------------------------------- /persistence/device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/device_test.go -------------------------------------------------------------------------------- /persistence/eventlog_const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/eventlog_const.go -------------------------------------------------------------------------------- /persistence/eventlog_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/eventlog_types.go -------------------------------------------------------------------------------- /persistence/eventlog_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/eventlog_types_test.go -------------------------------------------------------------------------------- /persistence/eventlogs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/eventlogs.go -------------------------------------------------------------------------------- /persistence/eventlogs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/eventlogs_test.go -------------------------------------------------------------------------------- /persistence/exchange_changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/exchange_changes.go -------------------------------------------------------------------------------- /persistence/helm_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/helm_deployment.go -------------------------------------------------------------------------------- /persistence/helm_deployment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/helm_deployment_test.go -------------------------------------------------------------------------------- /persistence/kube_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/kube_deployment.go -------------------------------------------------------------------------------- /persistence/microservice_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/microservice_interface.go -------------------------------------------------------------------------------- /persistence/microservices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/microservices.go -------------------------------------------------------------------------------- /persistence/microservices_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/microservices_test.go -------------------------------------------------------------------------------- /persistence/native_deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/native_deployment.go -------------------------------------------------------------------------------- /persistence/node_management_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/node_management_policy.go -------------------------------------------------------------------------------- /persistence/node_management_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/node_management_status.go -------------------------------------------------------------------------------- /persistence/node_pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/node_pattern.go -------------------------------------------------------------------------------- /persistence/node_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/node_policy.go -------------------------------------------------------------------------------- /persistence/node_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/node_policy_test.go -------------------------------------------------------------------------------- /persistence/node_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/node_status.go -------------------------------------------------------------------------------- /persistence/persistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/persistence.go -------------------------------------------------------------------------------- /persistence/persistence_int_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/persistence_int_test.go -------------------------------------------------------------------------------- /persistence/persistence_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/persistence_test.go -------------------------------------------------------------------------------- /persistence/secret_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/secret_status.go -------------------------------------------------------------------------------- /persistence/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/secrets.go -------------------------------------------------------------------------------- /persistence/service_images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/service_images.go -------------------------------------------------------------------------------- /persistence/surface_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/surface_errors.go -------------------------------------------------------------------------------- /persistence/user_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/persistence/user_input.go -------------------------------------------------------------------------------- /pkg/deb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/.gitignore -------------------------------------------------------------------------------- /pkg/deb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/Makefile -------------------------------------------------------------------------------- /pkg/deb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/README.md -------------------------------------------------------------------------------- /pkg/deb/horizon-cli-control.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon-cli-control.tmpl -------------------------------------------------------------------------------- /pkg/deb/horizon-cli/DEBIAN/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pkg/deb/horizon-cli/DEBIAN/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon-cli/DEBIAN/copyright -------------------------------------------------------------------------------- /pkg/deb/horizon-cli/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon-cli/DEBIAN/postinst -------------------------------------------------------------------------------- /pkg/deb/horizon-cli/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon-cli/DEBIAN/postrm -------------------------------------------------------------------------------- /pkg/deb/horizon-cli/DEBIAN/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | %: 3 | dh $@ 4 | -------------------------------------------------------------------------------- /pkg/deb/horizon-cli/etc/horizon/hzn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon-cli/etc/horizon/hzn.json -------------------------------------------------------------------------------- /pkg/deb/horizon-control.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon-control.tmpl -------------------------------------------------------------------------------- /pkg/deb/horizon/DEBIAN/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pkg/deb/horizon/DEBIAN/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon/DEBIAN/copyright -------------------------------------------------------------------------------- /pkg/deb/horizon/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon/DEBIAN/postinst -------------------------------------------------------------------------------- /pkg/deb/horizon/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon/DEBIAN/postrm -------------------------------------------------------------------------------- /pkg/deb/horizon/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon/DEBIAN/prerm -------------------------------------------------------------------------------- /pkg/deb/horizon/DEBIAN/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | %: 3 | dh $@ 4 | -------------------------------------------------------------------------------- /pkg/deb/horizon/etc/horizon/anax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon/etc/horizon/anax.json -------------------------------------------------------------------------------- /pkg/deb/horizon/lib/systemd/system/horizon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/deb/horizon/lib/systemd/system/horizon.service -------------------------------------------------------------------------------- /pkg/mac/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | horizon-cli/ 3 | -------------------------------------------------------------------------------- /pkg/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/mac/Makefile -------------------------------------------------------------------------------- /pkg/mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/mac/README.md -------------------------------------------------------------------------------- /pkg/mac/key-gen/horizon-cli-key.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/mac/key-gen/horizon-cli-key.conf -------------------------------------------------------------------------------- /pkg/mac/scripts/horizon-cli-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/mac/scripts/horizon-cli-uninstall.sh -------------------------------------------------------------------------------- /pkg/mac/scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/mac/scripts/postinstall -------------------------------------------------------------------------------- /pkg/rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/Makefile -------------------------------------------------------------------------------- /pkg/rpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/README.md -------------------------------------------------------------------------------- /pkg/rpm/horizon-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon-cli/.gitignore -------------------------------------------------------------------------------- /pkg/rpm/horizon-cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon-cli/Makefile -------------------------------------------------------------------------------- /pkg/rpm/horizon-cli/fs/etc/horizon/hzn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon-cli/fs/etc/horizon/hzn.json -------------------------------------------------------------------------------- /pkg/rpm/horizon-cli/fs/usr/horizon/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon-cli/fs/usr/horizon/copyright -------------------------------------------------------------------------------- /pkg/rpm/horizon-cli/horizon-cli.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon-cli/horizon-cli.spec -------------------------------------------------------------------------------- /pkg/rpm/horizon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon/.gitignore -------------------------------------------------------------------------------- /pkg/rpm/horizon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon/Makefile -------------------------------------------------------------------------------- /pkg/rpm/horizon/fs/etc/horizon/anax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon/fs/etc/horizon/anax.json -------------------------------------------------------------------------------- /pkg/rpm/horizon/fs/lib/systemd/system/horizon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon/fs/lib/systemd/system/horizon.service -------------------------------------------------------------------------------- /pkg/rpm/horizon/horizon.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/pkg/rpm/horizon/horizon.spec -------------------------------------------------------------------------------- /policy/agreement_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/agreement_protocol.go -------------------------------------------------------------------------------- /policy/agreement_protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/agreement_protocol_test.go -------------------------------------------------------------------------------- /policy/api_spec_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/api_spec_list.go -------------------------------------------------------------------------------- /policy/api_spec_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/api_spec_list_test.go -------------------------------------------------------------------------------- /policy/blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/blockchain.go -------------------------------------------------------------------------------- /policy/blockchain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/blockchain_test.go -------------------------------------------------------------------------------- /policy/data_verification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/data_verification.go -------------------------------------------------------------------------------- /policy/data_verification_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/data_verification_test.go -------------------------------------------------------------------------------- /policy/node_health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/node_health.go -------------------------------------------------------------------------------- /policy/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/policy.go -------------------------------------------------------------------------------- /policy/policy_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/policy_file.go -------------------------------------------------------------------------------- /policy/policy_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/policy_file_test.go -------------------------------------------------------------------------------- /policy/policy_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/policy_manager.go -------------------------------------------------------------------------------- /policy/policy_manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/policy_manager_test.go -------------------------------------------------------------------------------- /policy/test/pfaccttest/acct1.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfaccttest/acct1.policy -------------------------------------------------------------------------------- /policy/test/pfaccttest/acct2.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfaccttest/acct2.policy -------------------------------------------------------------------------------- /policy/test/pfcompat1/testorg/agbot.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcompat1/testorg/agbot.policy -------------------------------------------------------------------------------- /policy/test/pfcompat1/testorg/device.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcompat1/testorg/device.policy -------------------------------------------------------------------------------- /policy/test/pfcompat2/device1.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcompat2/device1.policy -------------------------------------------------------------------------------- /policy/test/pfcompat2/device2.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcompat2/device2.policy -------------------------------------------------------------------------------- /policy/test/pfcompat2/expecting.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcompat2/expecting.policy -------------------------------------------------------------------------------- /policy/test/pfcompat2/merged.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcompat2/merged.policy -------------------------------------------------------------------------------- /policy/test/pfcreate/created.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcreate/created.policy -------------------------------------------------------------------------------- /policy/test/pfcreate/expecting.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfcreate/expecting.policy -------------------------------------------------------------------------------- /policy/test/pfduptest/testorg/find.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfduptest/testorg/find.policy -------------------------------------------------------------------------------- /policy/test/pfduptest/testorg/find2.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfduptest/testorg/find2.policy -------------------------------------------------------------------------------- /policy/test/pffindtest/testorg/find.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pffindtest/testorg/find.policy -------------------------------------------------------------------------------- /policy/test/pfincompat1/agbot.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfincompat1/agbot.policy -------------------------------------------------------------------------------- /policy/test/pfincompat1/device.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfincompat1/device.policy -------------------------------------------------------------------------------- /policy/test/pfmatchtest/testorg/find.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmatchtest/testorg/find.policy -------------------------------------------------------------------------------- /policy/test/pfmatchtest/testorg/find2.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmatchtest/testorg/find2.policy -------------------------------------------------------------------------------- /policy/test/pfmatchtest/testorg/find3.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmatchtest/testorg/find3.policy -------------------------------------------------------------------------------- /policy/test/pfmerge1/agbot.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmerge1/agbot.policy -------------------------------------------------------------------------------- /policy/test/pfmerge1/device.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmerge1/device.policy -------------------------------------------------------------------------------- /policy/test/pfmerge1/expecting.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmerge1/expecting.policy -------------------------------------------------------------------------------- /policy/test/pfmultiorg/testorg/find.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmultiorg/testorg/find.policy -------------------------------------------------------------------------------- /policy/test/pfmultiorg/testorg2/find.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmultiorg/testorg2/find.policy -------------------------------------------------------------------------------- /policy/test/pfmultiorg/testorg2/find3.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfmultiorg/testorg2/find3.policy -------------------------------------------------------------------------------- /policy/test/pftest/echo.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pftest/echo.policy -------------------------------------------------------------------------------- /policy/test/pftest/test1.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pftest/test1.policy -------------------------------------------------------------------------------- /policy/test/pftest/test2.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pftest/test2.policy -------------------------------------------------------------------------------- /policy/test/pfwatchtest/testorg/test1.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/test/pfwatchtest/testorg/test1.policy -------------------------------------------------------------------------------- /policy/user_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/user_input.go -------------------------------------------------------------------------------- /policy/user_input_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/user_input_test.go -------------------------------------------------------------------------------- /policy/workload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/workload.go -------------------------------------------------------------------------------- /policy/workload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/policy/workload_test.go -------------------------------------------------------------------------------- /producer/basic_protocol_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/producer/basic_protocol_handler.go -------------------------------------------------------------------------------- /producer/producer_protocol_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/producer/producer_protocol_handler.go -------------------------------------------------------------------------------- /resource/authenticate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/authenticate.go -------------------------------------------------------------------------------- /resource/authentication_credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/authentication_credential.go -------------------------------------------------------------------------------- /resource/authentication_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/authentication_manager.go -------------------------------------------------------------------------------- /resource/certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/certificate.go -------------------------------------------------------------------------------- /resource/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/commands.go -------------------------------------------------------------------------------- /resource/resource_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/resource_manager.go -------------------------------------------------------------------------------- /resource/resource_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/resource_worker.go -------------------------------------------------------------------------------- /resource/secret_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/secret_api.go -------------------------------------------------------------------------------- /resource/secret_api_authenticate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/secret_api_authenticate.go -------------------------------------------------------------------------------- /resource/secrets_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/resource/secrets_manager.go -------------------------------------------------------------------------------- /semanticversion/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/semanticversion/version.go -------------------------------------------------------------------------------- /semanticversion/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/semanticversion/version_test.go -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/README.md -------------------------------------------------------------------------------- /test/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/Dockerfile -------------------------------------------------------------------------------- /test/docker/docker_run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/docker_run.bash -------------------------------------------------------------------------------- /test/docker/fs/etc/agent-in-kube/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/agent-in-kube/deployment.yaml.tmpl -------------------------------------------------------------------------------- /test/docker/fs/etc/agent-in-kube/deployment_nocert.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/agent-in-kube/deployment_nocert.yaml.tmpl -------------------------------------------------------------------------------- /test/docker/fs/etc/agent-in-kube/horizon.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/agent-in-kube/horizon.env -------------------------------------------------------------------------------- /test/docker/fs/etc/agent-in-kube/persistent-claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/agent-in-kube/persistent-claim.yaml -------------------------------------------------------------------------------- /test/docker/fs/etc/colonus/anax-combined-no-cert.config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/colonus/anax-combined-no-cert.config.tmpl -------------------------------------------------------------------------------- /test/docker/fs/etc/colonus/anax-combined.config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/colonus/anax-combined.config.tmpl -------------------------------------------------------------------------------- /test/docker/fs/etc/colonus/anax-combined2-no-cert.config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/colonus/anax-combined2-no-cert.config.tmpl -------------------------------------------------------------------------------- /test/docker/fs/etc/colonus/anax-combined2.config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/colonus/anax-combined2.config.tmpl -------------------------------------------------------------------------------- /test/docker/fs/etc/colonus/anax-no-cert.config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/colonus/anax-no-cert.config.tmpl -------------------------------------------------------------------------------- /test/docker/fs/etc/colonus/anax.config.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/etc/colonus/anax.config.tmpl -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/Dockerfile -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/Makefile -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/external/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/external/Makefile -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/external/external-hello/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/external/external-hello/Chart.yaml -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/external/external-hello/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/external/external-hello/templates/deployment.yaml -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/external/external-hello/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/external/external-hello/templates/service.yaml -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/external/external-hello/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/external/external-hello/values.yaml -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/external/horizon/service.definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/external/horizon/service.definition.json -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/external/horizon/userinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/external/horizon/userinput.json -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/service.sh -------------------------------------------------------------------------------- /test/docker/fs/helm/hello/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/helm/hello/start.sh -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/README.md: -------------------------------------------------------------------------------- 1 | # For local service project testing 2 | 3 | -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/cpu/Dockerfile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/cpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/cpu/Makefile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/cpu/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/cpu/service.sh -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/cpu/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | socat TCP4-LISTEN:8347,fork EXEC:./service.sh 4 | 5 | -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/hello/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/hello/Dockerfile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/hello/Makefile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/hello/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/hello/server -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/hello/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/hello/server.go -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/hello/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/hello/start.sh -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/leaf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/leaf/Dockerfile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/leaf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/leaf/Makefile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/leaf/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/leaf/service.sh -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/leaf/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | socat TCP4-LISTEN:8347,fork EXEC:./service.sh 4 | 5 | -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/usehello/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/usehello/Dockerfile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/usehello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/usehello/Makefile -------------------------------------------------------------------------------- /test/docker/fs/hzn/service/usehello/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/hzn/service/usehello/start.sh -------------------------------------------------------------------------------- /test/docker/fs/objects/basicres.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/objects/basicres.policy -------------------------------------------------------------------------------- /test/docker/fs/objects/multires.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/objects/multires.policy -------------------------------------------------------------------------------- /test/docker/fs/resources/private/basicres/basic-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/resources/private/basicres/basic-resource.json -------------------------------------------------------------------------------- /test/docker/fs/resources/private/multires/resource1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/resources/private/multires/resource1.json -------------------------------------------------------------------------------- /test/docker/fs/resources/private/multires/resource2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/resources/private/multires/resource2.json -------------------------------------------------------------------------------- /test/docker/fs/resources/public/public-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/docker/fs/resources/public/public-resource.json -------------------------------------------------------------------------------- /test/gov/add_test_nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/add_test_nodes.sh -------------------------------------------------------------------------------- /test/gov/agbot_apitest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/agbot_apitest.sh -------------------------------------------------------------------------------- /test/gov/agbot_del_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/agbot_del_loop.sh -------------------------------------------------------------------------------- /test/gov/agbot_upgrade_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/agbot_upgrade_test.sh -------------------------------------------------------------------------------- /test/gov/agp_apitest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/agp_apitest.sh -------------------------------------------------------------------------------- /test/gov/api_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/api_key.sh -------------------------------------------------------------------------------- /test/gov/apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/apireg.sh -------------------------------------------------------------------------------- /test/gov/apitest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/apitest.sh -------------------------------------------------------------------------------- /test/gov/build_old_anax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/build_old_anax.sh -------------------------------------------------------------------------------- /test/gov/check_node_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/check_node_status.sh -------------------------------------------------------------------------------- /test/gov/clean_css.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/clean_css.sh -------------------------------------------------------------------------------- /test/gov/cs_apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/cs_apireg.sh -------------------------------------------------------------------------------- /test/gov/cs_apitest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/cs_apitest.sh -------------------------------------------------------------------------------- /test/gov/del_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/del_loop.sh -------------------------------------------------------------------------------- /test/gov/deploy_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/deploy_file.sh -------------------------------------------------------------------------------- /test/gov/deployment_policies/userdev/bp_k8s_embedded_ns_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/deployment_policies/userdev/bp_k8s_embedded_ns_update.json -------------------------------------------------------------------------------- /test/gov/deployment_policies/userdev/bp_k8s_update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/deployment_policies/userdev/bp_k8s_update.json -------------------------------------------------------------------------------- /test/gov/deployment_policies/userdev/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/deployment_policies/userdev/location.json -------------------------------------------------------------------------------- /test/gov/deployment_policies/userdev/location_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/deployment_policies/userdev/location_secrets.json -------------------------------------------------------------------------------- /test/gov/deployment_policies/userdev/netspeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/deployment_policies/userdev/netspeed.json -------------------------------------------------------------------------------- /test/gov/deployment_policies/userdev/netspeed_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/deployment_policies/userdev/netspeed_secrets.json -------------------------------------------------------------------------------- /test/gov/gov-combined.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/gov-combined.sh -------------------------------------------------------------------------------- /test/gov/gpstest_apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/gpstest_apireg.sh -------------------------------------------------------------------------------- /test/gov/ha_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/ha_test.sh -------------------------------------------------------------------------------- /test/gov/hello_apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hello_apireg.sh -------------------------------------------------------------------------------- /test/gov/helm_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/helm_package.sh -------------------------------------------------------------------------------- /test/gov/hzn_apikey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hzn_apikey.sh -------------------------------------------------------------------------------- /test/gov/hzn_compcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hzn_compcheck.sh -------------------------------------------------------------------------------- /test/gov/hzn_dev_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hzn_dev_services.sh -------------------------------------------------------------------------------- /test/gov/hzn_mms_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hzn_mms_setup.sh -------------------------------------------------------------------------------- /test/gov/hzn_nmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hzn_nmp.sh -------------------------------------------------------------------------------- /test/gov/hzn_reg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hzn_reg.sh -------------------------------------------------------------------------------- /test/gov/hzn_secretsmanager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/hzn_secretsmanager.sh -------------------------------------------------------------------------------- /test/gov/init_exchange.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/init_exchange.sh -------------------------------------------------------------------------------- /test/gov/init_sync_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/init_sync_service.sh -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/business_pol_gpstest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/business_pol_gpstest.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/business_pol_gpstest2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/business_pol_gpstest2.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/business_pol_k8s_service1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/business_pol_k8s_service1.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/business_pol_location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/business_pol_location.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/business_pol_location_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/business_pol_location_secrets.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/node_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/node_policy.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/node_policy2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/node_policy2.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/node_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/node_ui.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/node_ui2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/node_ui2.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/pattern_sloc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/pattern_sloc.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/pattern_sloc_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/pattern_sloc_secrets.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/service_gpstest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/service_gpstest.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/service_location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/service_location.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/service_location_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/service_location_secrets.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/service_location_secrets_extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/service_location_secrets_extra.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/service_locgps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/service_locgps.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/service_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/service_policy.json -------------------------------------------------------------------------------- /test/gov/input_files/compcheck/service_policy2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/compcheck/service_policy2.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/k8s-mms-operator/k8s-mms-operator.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/k8s-mms-operator/k8s-mms-operator.tar.gz -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/k8s-mms-operator/node.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/k8s-mms-operator/node.policy.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/k8s-mms-operator/node_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/k8s-mms-operator/node_ui.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/k8s-secret-operator/k8s-secret-operator.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/k8s-secret-operator/k8s-secret-operator.tar.gz -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/k8s-secret-operator/node.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/k8s-secret-operator/node.policy.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/k8s-secret-operator/node_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/k8s-secret-operator/node_ui.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/node.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/node.policy.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/node_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/node_ui.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/topservice-operator-with-embedded-ns/node.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/topservice-operator-with-embedded-ns/node.policy.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/topservice-operator-with-embedded-ns/node_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/topservice-operator-with-embedded-ns/node_ui.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/topservice-operator-with-embedded-ns/topservice-operator-with-embedded-ns.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/topservice-operator-with-embedded-ns/topservice-operator-with-embedded-ns.tar.gz -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/topservice-operator.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/topservice-operator.tar.gz -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/topservice-operator/node.policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/topservice-operator/node.policy.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/topservice-operator/node_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/topservice-operator/node_ui.json -------------------------------------------------------------------------------- /test/gov/input_files/k8s_deploy/topservice-operator/topservice-operator.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/input_files/k8s_deploy/topservice-operator/topservice-operator.tar.gz -------------------------------------------------------------------------------- /test/gov/loc2_apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/loc2_apireg.sh -------------------------------------------------------------------------------- /test/gov/metering_apitest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/metering_apitest.sh -------------------------------------------------------------------------------- /test/gov/multiple_agents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/multiple_agents.sh -------------------------------------------------------------------------------- /test/gov/ns_apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/ns_apireg.sh -------------------------------------------------------------------------------- /test/gov/pattern_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/pattern_change.sh -------------------------------------------------------------------------------- /test/gov/patterns/e2edev@somecomp.com/netspeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/patterns/e2edev@somecomp.com/netspeed.json -------------------------------------------------------------------------------- /test/gov/patterns/e2edev@somecomp.com/netspeed_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/patterns/e2edev@somecomp.com/netspeed_secrets.json -------------------------------------------------------------------------------- /test/gov/patterns/e2edev@somecomp.com/sall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/patterns/e2edev@somecomp.com/sall.json -------------------------------------------------------------------------------- /test/gov/patterns/e2edev@somecomp.com/sall_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/patterns/e2edev@somecomp.com/sall_secrets.json -------------------------------------------------------------------------------- /test/gov/patterns/e2edev@somecomp.com/sk8s_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/patterns/e2edev@somecomp.com/sk8s_secrets.json -------------------------------------------------------------------------------- /test/gov/patterns/e2edev@somecomp.com/sloc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/patterns/e2edev@somecomp.com/sloc.json -------------------------------------------------------------------------------- /test/gov/patterns/e2edev@somecomp.com/sloc_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/patterns/e2edev@somecomp.com/sloc_secrets.json -------------------------------------------------------------------------------- /test/gov/policy_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/policy_change.sh -------------------------------------------------------------------------------- /test/gov/pws_apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/pws_apireg.sh -------------------------------------------------------------------------------- /test/gov/resource_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/resource_package.sh -------------------------------------------------------------------------------- /test/gov/run_kube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/run_kube.sh -------------------------------------------------------------------------------- /test/gov/service_apireg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_apireg.sh -------------------------------------------------------------------------------- /test/gov/service_apitest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_apitest.sh -------------------------------------------------------------------------------- /test/gov/service_configstate_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_configstate_test.sh -------------------------------------------------------------------------------- /test/gov/service_defs/IBM/netspeed_2.3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/IBM/netspeed_2.3.0.json -------------------------------------------------------------------------------- /test/gov/service_defs/IBM/netspeed_2.3.0_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/IBM/netspeed_2.3.0_secrets.json -------------------------------------------------------------------------------- /test/gov/service_defs/IBM/service-cpu_1.2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/IBM/service-cpu_1.2.2.json -------------------------------------------------------------------------------- /test/gov/service_defs/IBM/service-cpu_1.2.2_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/IBM/service-cpu_1.2.2_secrets.json -------------------------------------------------------------------------------- /test/gov/service_defs/e2edev@somecomp.com/netspeed_2.3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/e2edev@somecomp.com/netspeed_2.3.0.json -------------------------------------------------------------------------------- /test/gov/service_defs/e2edev@somecomp.com/netspeed_2.3.0_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/e2edev@somecomp.com/netspeed_2.3.0_secrets.json -------------------------------------------------------------------------------- /test/gov/service_defs/e2edev@somecomp.com/service-cpu_1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/e2edev@somecomp.com/service-cpu_1.0.json -------------------------------------------------------------------------------- /test/gov/service_defs/e2edev@somecomp.com/service-cpu_1.0_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_defs/e2edev@somecomp.com/service-cpu_1.0_secrets.json -------------------------------------------------------------------------------- /test/gov/service_log_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_log_test.sh -------------------------------------------------------------------------------- /test/gov/service_retry_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_retry_test.sh -------------------------------------------------------------------------------- /test/gov/service_secrets_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_secrets_test.sh -------------------------------------------------------------------------------- /test/gov/service_upgrading_downgrading_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/service_upgrading_downgrading_test.sh -------------------------------------------------------------------------------- /test/gov/set_node_property.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/set_node_property.sh -------------------------------------------------------------------------------- /test/gov/setup_secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/setup_secrets.sh -------------------------------------------------------------------------------- /test/gov/sharedreg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/sharedreg.sh -------------------------------------------------------------------------------- /test/gov/start_anax_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/start_anax_loop.sh -------------------------------------------------------------------------------- /test/gov/start_gov.sh: -------------------------------------------------------------------------------- 1 | /usr/local/bin/start >/tmp/agbot.log 2>&1 & 2 | 3 | -------------------------------------------------------------------------------- /test/gov/start_mgmt_hub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/start_mgmt_hub.sh -------------------------------------------------------------------------------- /test/gov/start_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/start_node.sh -------------------------------------------------------------------------------- /test/gov/stop_kube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/stop_kube.sh -------------------------------------------------------------------------------- /test/gov/stop_mgmt_hub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/stop_mgmt_hub.sh -------------------------------------------------------------------------------- /test/gov/stop_multiple_agents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/stop_multiple_agents.sh -------------------------------------------------------------------------------- /test/gov/swagger_validation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/swagger_validation.sh -------------------------------------------------------------------------------- /test/gov/sync_service_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/sync_service_test.sh -------------------------------------------------------------------------------- /test/gov/unconfig_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/unconfig_loop.sh -------------------------------------------------------------------------------- /test/gov/unregister.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/unregister.sh -------------------------------------------------------------------------------- /test/gov/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/utils.sh -------------------------------------------------------------------------------- /test/gov/vault_bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/vault_bootstrap.sh -------------------------------------------------------------------------------- /test/gov/vault_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/vault_test.sh -------------------------------------------------------------------------------- /test/gov/verify_agreements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/verify_agreements.sh -------------------------------------------------------------------------------- /test/gov/verify_edge_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/verify_edge_cluster.sh -------------------------------------------------------------------------------- /test/gov/verify_surfaced_error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/test/gov/verify_surfaced_error.sh -------------------------------------------------------------------------------- /tools/arch-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/tools/arch-tag -------------------------------------------------------------------------------- /tools/copy-i18n-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/tools/copy-i18n-messages -------------------------------------------------------------------------------- /tools/image-exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/tools/image-exists -------------------------------------------------------------------------------- /tools/no-debug-pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/tools/no-debug-pkg -------------------------------------------------------------------------------- /tools/unpack-i18n-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/tools/unpack-i18n-messages -------------------------------------------------------------------------------- /tools/update-i18n-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/tools/update-i18n-messages -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/version/version.go -------------------------------------------------------------------------------- /worker/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/worker/worker.go -------------------------------------------------------------------------------- /worker/worker_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/worker/worker_status.go -------------------------------------------------------------------------------- /worker/worker_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/worker/worker_status_test.go -------------------------------------------------------------------------------- /worker/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-horizon/anax/HEAD/worker/worker_test.go --------------------------------------------------------------------------------