├── .cspell.json ├── .editorconfig ├── .flox ├── .gitignore ├── env.json └── env │ ├── manifest.lock │ └── manifest.toml ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── spelling │ │ ├── allow.txt │ │ ├── candidate.patterns │ │ ├── excludes.txt │ │ ├── expect.txt │ │ ├── line_forbidden.patterns │ │ ├── patterns.txt │ │ └── reject.txt ├── dependabot.yml ├── linters │ ├── .ecrc │ ├── .flake8 │ ├── .markdownlint.json │ ├── .secretlintrc.json │ ├── .textlintrc │ ├── .yaml-lint.yml │ └── mlc_config.json └── workflows │ ├── build.yml │ ├── build_pr_preview.yml │ ├── check-links.yml │ ├── delete_pr_preview.yml │ ├── deploy.yml │ ├── deploy_pr_preview.yml │ ├── hugo_version.txt │ ├── mega-linter.yml │ └── spelling.yml ├── .gitignore ├── .gitleaksignore ├── .gitmodules ├── .lycheeignore ├── .mega-linter.yml ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.toml ├── AUTHORS ├── CODEOWNERS ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── icons │ └── logo.svg └── scss │ └── _variables_project.scss ├── config.toml ├── content └── en │ ├── _footer.md │ ├── _index.md │ ├── about │ ├── _index.md │ ├── concepts │ │ ├── _index.md │ │ ├── metadata.png │ │ ├── page.png │ │ └── section.png │ └── contributing │ │ ├── _index.md │ │ ├── git │ │ └── _index.md │ │ ├── shortcodes │ │ └── _index.md │ │ └── style │ │ └── _index.md │ ├── internal │ ├── _index.md │ ├── accounting │ │ ├── _index.md │ │ ├── record-and-message-formats │ │ │ ├── _index.md │ │ │ └── grid-accounting │ │ │ │ └── _index.md │ │ └── service-information │ │ │ └── _index.md │ ├── collaboration-tools │ │ ├── _index.md │ │ ├── certificates │ │ │ └── _index.md │ │ ├── mailing-lists │ │ │ └── _index.md │ │ ├── service-information │ │ │ └── _index.md │ │ └── sso │ │ │ └── _index.md │ ├── configuration-database │ │ ├── _index.md │ │ ├── access │ │ │ └── _index.md │ │ ├── adding-new-projects │ │ │ └── _index.md │ │ ├── adding-service-endpoint │ │ │ ├── _index.md │ │ │ ├── add-endpoint.png │ │ │ ├── completed-service-overview.png │ │ │ ├── service-description-review.png │ │ │ ├── service-edition.png │ │ │ ├── service-endpoint-page.png │ │ │ ├── service-overview.png │ │ │ ├── service-summary-page.png │ │ │ └── site-overview.png │ │ ├── api │ │ │ └── _index.md │ │ ├── downtimes │ │ │ └── _index.md │ │ ├── extension-properties │ │ │ └── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── ngi-core-services │ │ │ └── _index.md │ │ ├── ngis │ │ │ └── _index.md │ │ ├── scopes │ │ │ └── _index.md │ │ ├── service-entities │ │ │ └── _index.md │ │ ├── service-groups │ │ │ └── _index.md │ │ ├── service-information │ │ │ └── _index.md │ │ ├── service-registration-requirements │ │ │ └── _index.md │ │ ├── service-types │ │ │ └── _index.md │ │ ├── sites │ │ │ └── _index.md │ │ └── users-roles │ │ │ ├── _index.md │ │ │ ├── approve-revoke │ │ │ └── _index.md │ │ │ ├── managing-accounts │ │ │ └── _index.md │ │ │ └── managing-roles │ │ │ └── _index.md │ ├── getting-started │ │ └── _index.md │ ├── guidelines-software-development │ │ └── _index.md │ ├── helpdesk │ │ ├── _index.md │ │ ├── access-and-roles │ │ │ ├── _index.md │ │ │ ├── create-ticket.png │ │ │ └── owned-roles.png │ │ ├── features │ │ │ ├── _index.md │ │ │ ├── alarm-tickets │ │ │ │ ├── Alarm_Notify_Mail.png │ │ │ │ ├── Alarm_Submit_Form.png │ │ │ │ ├── Alarm_Submit_Link.png │ │ │ │ ├── Alarm_T1_Dropdown.png │ │ │ │ ├── GGUS_Graph_ALARM_Ticket_Process.pdf │ │ │ │ ├── GGUS_Graph_Alarm-ticket-process.png │ │ │ │ ├── LHC_T1s.png │ │ │ │ └── _index.md │ │ │ ├── issue-type-values │ │ │ │ └── _index.md │ │ │ ├── quality-of-support-levels │ │ │ │ └── _index.md │ │ │ ├── report-generator │ │ │ │ └── _index.md │ │ │ ├── team-tickets │ │ │ │ ├── GGUS_Graph_TEAM_Ticket_Process.pdf │ │ │ │ ├── GGUS_Graph_Team-ticket-process.png │ │ │ │ ├── Submit_Form_Team.png │ │ │ │ ├── Submit_Team.png │ │ │ │ ├── Team_to_alarm.png │ │ │ │ └── _index.md │ │ │ ├── ticket-priority │ │ │ │ └── _index.md │ │ │ ├── ticket-scope │ │ │ │ └── _index.md │ │ │ └── tickets-to-multiple-sites │ │ │ │ ├── _index.md │ │ │ │ ├── create-multi-tickets.png │ │ │ │ ├── multiple-tickets.png │ │ │ │ └── multisite-search.png │ │ ├── service-information │ │ │ └── _index.md │ │ ├── user-guide │ │ │ ├── Account_Update_PersistentID.png │ │ │ ├── Complete_Ticket_List.png │ │ │ ├── GGUS_Confirm_Submit.png │ │ │ ├── GGUS_EGI_AAI_1.png │ │ │ ├── GGUS_Escal_Button.png │ │ │ ├── GGUS_Home.png │ │ │ ├── GGUS_Modifysection_User.png │ │ │ ├── GGUS_Registration_Form.png │ │ │ ├── GGUS_Subscribe.png │ │ │ ├── GGUS_User_Search.png │ │ │ ├── GGUS_Verify_Button.png │ │ │ ├── Ticket_History.png │ │ │ ├── Ticket_Information.png │ │ │ ├── Ticket_Submit_Form.png │ │ │ ├── UG_Unregistered_User.png │ │ │ ├── _index.md │ │ │ ├── create-ticket.png │ │ │ ├── dashboard-page.png │ │ │ ├── new-ticket-form.png │ │ │ ├── new-ticket-form2.png │ │ │ ├── support-groups-field.png │ │ │ ├── tags-links.png │ │ │ ├── text-box-icons1.png │ │ │ ├── text-box-involve.png │ │ │ ├── text-box.png │ │ │ └── ticket-history.png │ │ └── workflows │ │ │ ├── _index.md │ │ │ └── waiting-for-submitter │ │ │ ├── GGUS_Graph_WaitingForSubmitter-workflow.png │ │ │ └── _index.md │ ├── messaging │ │ ├── _index.md │ │ ├── messaging-diagram.png │ │ └── service-information │ │ │ └── _index.md │ ├── monitoring │ │ ├── _index.md │ │ └── service-information │ │ │ └── _index.md │ ├── operations-portal │ │ ├── _index.md │ │ ├── service-information │ │ │ └── _index.md │ │ └── using-vapor │ │ │ ├── _index.md │ │ │ ├── vapor-dteam-computing-overview.png │ │ │ ├── vapor-dteam-computing-resources.png │ │ │ └── vapor-dteam-computing-shares.png │ └── security-coordination │ │ ├── _index.md │ │ ├── monitoring │ │ ├── _index.md │ │ └── pakiti │ │ │ └── _index.md │ │ └── service-information │ │ └── _index.md │ ├── providers │ ├── _index.md │ ├── check-in │ │ ├── _index.md │ │ ├── idp │ │ │ └── _index.md │ │ └── sp │ │ │ ├── _index.md │ │ │ ├── oidc-examples-keycloak-add-oidc-idp-1.png │ │ │ ├── oidc-examples-keycloak-add-oidc-idp-2.png │ │ │ ├── oidc-examples-keycloak-idp.png │ │ │ ├── oidc-examples-keycloak-oidc-eduperson-entitlement-mapper.png │ │ │ ├── oidc-examples-keycloak-oidc-idp-advanced.png │ │ │ ├── oidc-examples-keycloak-oidc-idp-oidc.png │ │ │ ├── oidc-examples-keycloak-oidc-voperson-id-mapper.png │ │ │ ├── saml-examples-keycloak-add-saml-idp-1.png │ │ │ ├── saml-examples-keycloak-add-saml-idp-2.png │ │ │ ├── saml-examples-keycloak-idp.png │ │ │ ├── saml-examples-keycloak-saml-edupersonentitlement-mapper.png │ │ │ ├── saml-examples-keycloak-saml-idp-advanced.png │ │ │ ├── saml-examples-keycloak-saml-idp-saml-setting.png │ │ │ └── saml-examples-keycloak-saml-vopersonid-mapper.png │ ├── cloud-compute │ │ ├── _index.md │ │ ├── faq │ │ │ └── _index.md │ │ ├── openstack │ │ │ ├── _index.md │ │ │ ├── aai │ │ │ │ └── _index.md │ │ │ ├── accounting │ │ │ │ └── _index.md │ │ │ ├── cloud-info │ │ │ │ └── _index.md │ │ │ ├── gpu │ │ │ │ └── _index.md │ │ │ ├── openstacksite.png │ │ │ ├── useful-resources │ │ │ │ └── _index.md │ │ │ └── vo-config │ │ │ │ └── _index.md │ │ ├── registration │ │ │ └── _index.md │ │ ├── requirements │ │ │ └── _index.md │ │ └── validation │ │ │ └── _index.md │ ├── datahub │ │ ├── _index.md │ │ └── oneprovider │ │ │ ├── _index.md │ │ │ ├── add-support-oneprovider.png │ │ │ ├── onedata-logo.png │ │ │ ├── onedatify-oneprovider-expose.png │ │ │ ├── onedatify-oneprovider.png │ │ │ ├── onedatify_step_1.png │ │ │ ├── onedatify_step_5.png │ │ │ ├── onedatify_step_6.png │ │ │ └── storage-import-01.png │ ├── high-throughput-compute │ │ ├── _index.md │ │ ├── changing-site-bdii │ │ │ └── _index.md │ │ ├── htcondor-ce-accounting │ │ │ └── _index.md │ │ └── storage-accounting │ │ │ └── _index.md │ ├── joining │ │ ├── _index.md │ │ ├── core-service │ │ │ └── _index.md │ │ ├── federated-resource-centre │ │ │ ├── SLAs-Picture.png │ │ │ ├── SiteStatusFlow.png │ │ │ └── _index.md │ │ ├── new-provider │ │ │ └── _index.md │ │ ├── new-service │ │ │ └── _index.md │ │ └── technology-provider │ │ │ └── _index.md │ ├── notebooks │ │ ├── _index.md │ │ ├── architecture │ │ │ ├── _index.md │ │ │ └── egi_notebooks_architecture.png │ │ └── operations │ │ │ └── _index.md │ ├── online-storage │ │ ├── _index.md │ │ └── minio-oidc │ │ │ └── _index.md │ ├── operations-manuals │ │ ├── _index.md │ │ ├── faq-hepspec06 │ │ │ └── _index.md │ │ ├── howto01_using_igtf_ca_distribution │ │ │ └── _index.md │ │ ├── howto02_site_certification_required_documentation │ │ │ └── _index.md │ │ ├── howto03_site_certification_giis_check │ │ │ └── _index.md │ │ ├── howto04_site_certification_manual_tests │ │ │ └── _index.md │ │ ├── integration-checklist │ │ │ └── _index.md │ │ ├── man01_how_to_publish_site_information │ │ │ └── _index.md │ │ ├── man02_service_intervention_management │ │ │ └── _index.md │ │ ├── man04_tool_intervention_management │ │ │ └── _index.md │ │ ├── man05_top_and_site_bdii_high_availability │ │ │ ├── _index.md │ │ │ ├── dnsupdater-igi.png │ │ │ ├── nsupdater-ibergrid-2.png │ │ │ └── nsupdater-ibergrid.png │ │ ├── man06_failover_for_mysql_grid_based_services │ │ │ └── _index.md │ │ ├── man07_voms_replication │ │ │ ├── _index.md │ │ │ ├── first_replica.sh │ │ │ └── next_replicas.sh │ │ ├── man09_accounting_data_publishing │ │ │ └── _index.md │ │ └── operations-start-guide │ │ │ └── _index.md │ └── rod │ │ ├── _index.md │ │ ├── alarms-tickets │ │ └── _index.md │ │ ├── communication │ │ └── _index.md │ │ ├── downtimes │ │ └── _index.md │ │ ├── duties │ │ └── _index.md │ │ ├── faq │ │ └── _index.md │ │ ├── overview │ │ └── _index.md │ │ └── security │ │ └── _index.md │ ├── search.md │ ├── support │ ├── _index.md │ └── ggus-group.png │ └── users │ ├── _index.md │ ├── aai │ ├── _index.md │ └── check-in │ │ ├── _index.md │ │ ├── faq │ │ ├── _index.md │ │ ├── check-in-discovery-igft.png │ │ └── check-in-support-unit.png │ │ ├── joining-virtual-organisation │ │ ├── _index.md │ │ ├── check-in-join-example.png │ │ ├── check-in-pending-petition-approval.png │ │ ├── check-in-pending-petition-confirmation.png │ │ ├── check-in-pending-petition-created.png │ │ ├── check-in-pending-petitions.png │ │ ├── check-in-people-enroll.png │ │ └── check-in-start-enroll.png │ │ ├── linking │ │ ├── _index.md │ │ ├── check-in-certificates-preview.png │ │ ├── check-in-discovery-igft.png │ │ ├── check-in-link-end.png │ │ ├── check-in-link-intro.png │ │ ├── check-in-link-new.png │ │ ├── check-in-list-organisational-ids.png │ │ ├── check-in-my-identity.png │ │ └── check-in-select-certificate.png │ │ ├── obtaining-tokens │ │ ├── _index.md │ │ ├── oidc-agent │ │ │ └── _index.md │ │ └── token-portal │ │ │ ├── _index.md │ │ │ ├── check-in-token-access-token-2.png │ │ │ ├── check-in-token-access-token.png │ │ │ ├── check-in-token-login.png │ │ │ └── check-in-token-refresh-token.png │ │ ├── signup │ │ ├── _index.md │ │ ├── check-in-idp-discovery.png │ │ ├── check-in-profile-basic.png │ │ ├── check-in-profile-linked.png │ │ ├── check-in-profile-vos.png │ │ ├── check-in-sign-up-attributes.png │ │ ├── check-in-sign-up-intro.png │ │ ├── check-in-tou-agreement.png │ │ └── egi-aup.png │ │ └── vos │ │ ├── OP_VO_details.png │ │ ├── OP_VO_enrolment_url.png │ │ ├── VOs.png │ │ ├── _index.md │ │ ├── authorisation │ │ ├── _index.md │ │ ├── checkin_flow.jpg │ │ └── entitlements.jpg │ │ ├── keycloak │ │ ├── OP_VO_details.png │ │ ├── OP_VO_enrolment_url.png │ │ ├── _index.md │ │ ├── admins │ │ │ ├── _index.md │ │ │ ├── admin_add.png │ │ │ ├── admin_add_email1.png │ │ │ ├── admin_add_email2.png │ │ │ ├── admin_delete.png │ │ │ ├── admin_direct_indirect.png │ │ │ ├── admin_menu.png │ │ │ └── admins.png │ │ ├── general_groups-01.png │ │ ├── general_groups-02.png │ │ ├── general_groups-03.png │ │ ├── general_groups.png │ │ ├── groups │ │ │ ├── _index.md │ │ │ ├── group_details.jpg │ │ │ ├── menu_groupmanagement.png │ │ │ ├── subgroup_create.png │ │ │ ├── subgroup_create2.png │ │ │ ├── subgroup_create_detail.png │ │ │ ├── subgroup_delete.png │ │ │ └── subgroup_delete2.png │ │ ├── members │ │ │ ├── Membership_states.png │ │ │ ├── _index.md │ │ │ ├── enrolment_access.png │ │ │ ├── enrolment_comments.png │ │ │ ├── enrolment_copyURL.png │ │ │ ├── enrolment_copyURL2.png │ │ │ ├── enrolment_create1.png │ │ │ ├── enrolment_create2.png │ │ │ ├── enrolment_default.png │ │ │ ├── enrolment_delete2.png │ │ │ ├── enrolment_future_membership.png │ │ │ ├── enrolment_list.png │ │ │ ├── enrolment_list_default.png │ │ │ ├── enrolment_membership.png │ │ │ ├── enrolment_membership_365warning.png │ │ │ ├── enrolment_membership_indefinite.png │ │ │ ├── enrolment_menu.png │ │ │ ├── enrolment_request_approve.png │ │ │ ├── enrolment_run.png │ │ │ ├── enrolment_select_visible.png │ │ │ ├── enrolment_status.png │ │ │ ├── expiration_extension.png │ │ │ ├── expiration_warning.png │ │ │ ├── general_groups-04.png │ │ │ ├── member_add.png │ │ │ ├── member_add0.png │ │ │ ├── member_add2.png │ │ │ ├── member_add3.png │ │ │ ├── member_delete.png │ │ │ ├── member_edit.png │ │ │ ├── member_invite.png │ │ │ ├── member_invite2.png │ │ │ ├── member_suspend.png │ │ │ ├── member_suspend2.png │ │ │ ├── members_list.png │ │ │ ├── membership_effective_expiration.png │ │ │ ├── membership_expiration.png │ │ │ ├── status_green.png │ │ │ ├── status_red.png │ │ │ └── status_yellow.png │ │ └── roles │ │ │ ├── _index.md │ │ │ ├── member_edit.png │ │ │ ├── role_create.png │ │ │ ├── role_delete.png │ │ │ ├── roles_edit.png │ │ │ ├── roles_list_after.png │ │ │ ├── roles_list_before.png │ │ │ ├── roles_member_edit.png │ │ │ └── roles_section.png │ │ ├── perun │ │ └── _index.md │ │ └── voms │ │ ├── _index.md │ │ ├── register_enmr_vo.png │ │ └── vo_registration.png │ ├── compute │ ├── _index.md │ ├── cloud-compute │ │ ├── _index.md │ │ ├── appdb │ │ │ └── _index.md │ │ ├── auth │ │ │ └── _index.md │ │ ├── automate │ │ │ └── _index.md │ │ ├── block-storage │ │ │ └── _index.md │ │ ├── dynamic-dns │ │ │ ├── _index.md │ │ │ ├── add-host.png │ │ │ └── dynamic-dns-portal.png │ │ ├── faq │ │ │ └── _index.md │ │ ├── gpgpu │ │ │ └── _index.md │ │ ├── images │ │ │ ├── _index.md │ │ │ └── appdb_cloud.png │ │ ├── monitor │ │ │ ├── _index.md │ │ │ ├── vmops_settings.png │ │ │ ├── vmops_va_select.png │ │ │ └── vmops_vm.png │ │ ├── networking │ │ │ └── _index.md │ │ ├── openstack │ │ │ └── _index.md │ │ └── security │ │ │ └── _index.md │ ├── cloud-container-compute │ │ ├── _index.md │ │ ├── docker │ │ │ └── _index.md │ │ └── k8s │ │ │ └── _index.md │ ├── high-performance-compute │ │ └── _index.md │ ├── high-throughput-compute │ │ ├── _index.md │ │ ├── grid-storage │ │ │ └── _index.md │ │ ├── htc_archtecture.png │ │ └── querying-information-system │ │ │ └── _index.md │ ├── orchestration │ │ ├── _index.md │ │ ├── im │ │ │ ├── _index.md │ │ │ ├── cli │ │ │ │ └── _index.md │ │ │ ├── dashboard │ │ │ │ ├── _index.md │ │ │ │ ├── dash_add_nodes.png │ │ │ │ ├── dash_change_user.png │ │ │ │ ├── dash_configure.png │ │ │ │ ├── dash_cred_list.png │ │ │ │ ├── dash_edit_cred.png │ │ │ │ ├── dash_inf_actions.png │ │ │ │ ├── dash_inf_list.png │ │ │ │ ├── dash_inputs.png │ │ │ │ ├── dash_login.png │ │ │ │ ├── dash_outputs.png │ │ │ │ ├── dash_site.png │ │ │ │ ├── dash_vm_info.png │ │ │ │ └── dash_vm_resize.png │ │ │ └── ec3 │ │ │ │ ├── _index.md │ │ │ │ ├── apps │ │ │ │ ├── _index.md │ │ │ │ ├── ecas │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── ecas-application-dashboard.png │ │ │ │ │ ├── ecas-container-1.png │ │ │ │ │ ├── ecas-container-2.png │ │ │ │ │ ├── ecas-end.png │ │ │ │ │ ├── ecas-endpoint.png │ │ │ │ │ ├── ecas-explore.png │ │ │ │ │ ├── ecas-front.png │ │ │ │ │ ├── ecas-infra-io.png │ │ │ │ │ ├── ecas-infra-server.png │ │ │ │ │ ├── ecas-instance.png │ │ │ │ │ ├── ecas-jupyter.png │ │ │ │ │ ├── ecas-jupyterhub.png │ │ │ │ │ ├── ecas-list.png │ │ │ │ │ ├── ecas-lrms.png │ │ │ │ │ ├── ecas-manage.png │ │ │ │ │ ├── ecas-oph_term.png │ │ │ │ │ ├── ecas-os.png │ │ │ │ │ ├── ecas-reduce.png │ │ │ │ │ ├── ecas-size.png │ │ │ │ │ ├── ecas-space.png │ │ │ │ │ ├── ecas-summary.png │ │ │ │ │ └── grafana-login.png │ │ │ │ └── htc │ │ │ │ │ └── _index.md │ │ │ │ ├── cli │ │ │ │ └── _index.md │ │ │ │ ├── developers │ │ │ │ └── _index.md │ │ │ │ └── portal │ │ │ │ ├── _index.md │ │ │ │ ├── ec3-endpoint.png │ │ │ │ ├── ec3-lrms.png │ │ │ │ ├── ec3-nodes.png │ │ │ │ ├── ec3-portal.png │ │ │ │ └── ec3-size.png │ │ └── workload-manager │ │ │ ├── _index.md │ │ │ ├── dirac_web_portal.png │ │ │ ├── egi_workload_manager_web_portal.png │ │ │ ├── job_monitor.png │ │ │ ├── job_submit.png │ │ │ ├── proxy_cert_upload_1.png │ │ │ └── proxy_cert_upload_2.png │ └── software-distribution │ │ └── _index.md │ ├── data │ ├── _index.md │ ├── management │ │ ├── _index.md │ │ ├── data-transfer │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── clients │ │ │ │ └── _index.md │ │ │ └── monitoring │ │ │ │ ├── _index.md │ │ │ │ ├── ftsmon_details.png │ │ │ │ ├── ftsmon_optimizer.png │ │ │ │ └── ftsmon_overview.png │ │ └── datahub │ │ │ ├── _index.md │ │ │ ├── api │ │ │ ├── _index.md │ │ │ └── datahub-space-permissions.png │ │ │ ├── clients │ │ │ ├── _index.md │ │ │ ├── datahub-browse-space.png │ │ │ ├── datahub-connect-check-in.png │ │ │ ├── datahub-space-info.png │ │ │ ├── datahub-space-token.png │ │ │ └── datahub-welcome-screen.png │ │ │ ├── datahub-file-popularity-smarch-caching.png │ │ │ ├── datahub-metadata-management.png │ │ │ ├── datahub-replica-management.png │ │ │ ├── datahub-space-oneclient.png │ │ │ ├── datahub-space-web.png │ │ │ ├── file-management │ │ │ ├── _index.md │ │ │ ├── datahub-acl.png │ │ │ ├── datahub-drag-file.png │ │ │ ├── datahub-posix.png │ │ │ ├── datahub-share-01.png │ │ │ ├── datahub-share-02.png │ │ │ ├── datahub-share-03.png │ │ │ ├── datahub-share-04.png │ │ │ └── datahub-transfer-01.png │ │ │ ├── links │ │ │ └── _index.md │ │ │ └── usecases │ │ │ ├── _index.md │ │ │ ├── datahub-federation-of-service-providers.png │ │ │ ├── datahub-notebooks-integration.png │ │ │ ├── datahub-publication-of-datasets.png │ │ │ ├── datahub-smart-caching.png │ │ │ ├── datahub-transparent-data-access.png │ │ │ ├── docker-logo.png │ │ │ └── onedata-logo.png │ └── storage │ │ ├── _index.md │ │ └── object-storage │ │ └── _index.md │ ├── dev-env │ ├── _index.md │ ├── notebooks │ │ ├── _index.md │ │ ├── data │ │ │ ├── _index.md │ │ │ ├── datahub-folder.png │ │ │ ├── notebooks-b2drop-1.png │ │ │ ├── notebooks-b2drop-2.png │ │ │ └── notebooks-b2drop-3.png │ │ ├── faq │ │ │ └── _index.md │ │ ├── integration │ │ │ └── _index.md │ │ ├── kernels │ │ │ ├── _index.md │ │ │ ├── default │ │ │ │ ├── _index.md │ │ │ │ └── notebooks-custom-env.png │ │ │ ├── eiscat-env.png │ │ │ ├── matlab │ │ │ │ ├── _index.md │ │ │ │ ├── matlab-icon.png │ │ │ │ ├── matlab-ide.png │ │ │ │ ├── matlab-network-license.png │ │ │ │ ├── matlab-online-license.png │ │ │ │ ├── matlab-session.png │ │ │ │ └── matlab-status.png │ │ │ └── notebooks-environments.png │ │ └── quickstart │ │ │ ├── _index.md │ │ │ ├── lab.png │ │ │ └── notebooks-front.png │ └── replay │ │ ├── _index.md │ │ ├── binder-link.png │ │ ├── launch-error.png │ │ ├── replay-hub-home.png │ │ └── reproduce-flow-binder.png │ ├── getting-started │ ├── _index.md │ ├── architecture │ │ └── _index.md │ ├── cli │ │ └── _index.md │ ├── communities │ │ ├── _index.md │ │ └── pangeo │ │ │ └── _index.md │ ├── openstack │ │ ├── _index.md │ │ ├── dashboard-login-check-in-1.png │ │ ├── dashboard-login-check-in-2.png │ │ ├── dashboard-login-check-in-3.png │ │ └── dashboard-login-check-partb.png │ └── task-force │ │ └── _index.md │ ├── machine-learning │ └── _index.md │ ├── security │ ├── _index.md │ └── secrets-store │ │ ├── _index.md │ │ ├── api │ │ └── _index.md │ │ ├── architecture │ │ ├── _index.md │ │ └── sstore-design.png │ │ ├── cli │ │ └── _index.md │ │ └── gui │ │ ├── _index.md │ │ ├── vault-create-secret.png │ │ ├── vault-home-directory.png │ │ ├── vault-homes.png │ │ ├── vault-login-oidc.png │ │ └── vault-main-window.png │ ├── specific │ ├── _index.md │ └── providers │ │ └── _index.md │ ├── training │ └── _index.md │ └── tutorials │ ├── _index.md │ ├── adhoc │ ├── _index.md │ ├── accessing-vm-with-ssh │ │ └── _index.md │ ├── create-your-first-virtual-machine │ │ └── _index.md │ ├── data-transfer-grid-storage │ │ ├── VAPOR-VO_detail.png │ │ ├── VAPOR-home.png │ │ ├── VAPOR-storage.png │ │ ├── WebFTS-credential_delegation.png │ │ ├── WebFTS-my_jobs.png │ │ ├── WebFTS-submit_transfer.png │ │ └── _index.md │ ├── data-transfer-object-storage │ │ ├── CERN-PROD-FTS3.png │ │ └── _index.md │ ├── htc-job-submission │ │ ├── _index.md │ │ └── argo_issues.png │ ├── jupyter-datahub-virtual-machine │ │ ├── _index.md │ │ ├── edit-mount.sh.png │ │ ├── no-https-datahub-vm.png │ │ └── run-mount.sh.png │ ├── notebooks-checkin │ │ └── _index.md │ ├── notebooks-gridstorage │ │ └── _index.md │ ├── notebooks-secure-blockstorage │ │ └── _index.md │ ├── oidc-agent-fedcloudclient-terraform │ │ └── _index.md │ ├── vm-blockstorage │ │ └── _index.md │ ├── vm-datahub │ │ └── _index.md │ └── vm-dyndns │ │ └── _index.md │ ├── advanced │ └── _index.md │ ├── foundation │ └── _index.md │ ├── intermediate │ └── _index.md │ ├── scientific │ └── _index.md │ └── template │ └── _index.md ├── i18n └── en.toml ├── layouts ├── partials │ ├── footer.html │ ├── hooks │ │ └── head-end.html │ ├── navbar.html │ ├── page-meta-lastmod.html │ ├── page-meta-links.html │ ├── section-index.html │ ├── tags.html │ └── toc.html └── shortcodes │ ├── blocks │ ├── feature.html │ ├── landing.html │ └── section.html │ ├── page-info.html │ ├── tabpanex.html │ └── tabx.html ├── package-lock.json ├── package.json ├── public └── .gitkeep └── static ├── .github └── PULL_REQUEST_TEMPLATE.md ├── README.md ├── css ├── egi.css ├── shortcodes │ └── tabbed-panex.css └── tags.css ├── favicons ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── site.webmanifest ├── images └── egi-logo-300x300.png └── js ├── egi.js ├── featherlight.min.js ├── github.min.js ├── highlight.min.js └── prism.js /.cspell.json: -------------------------------------------------------------------------------- 1 | { 2 | // Enable your dictionary by adding it to the list of `dictionaries` 3 | "dictionaries": ["custom-words"], 4 | 5 | // Tell CSpell about your dictionary 6 | "dictionaryDefinitions": [ 7 | { 8 | // The name of the dictionary is used to look it up. 9 | "name": "custom-words", 10 | // Path to the custom word file. Relative to this `cspell.json` file. 11 | "path": "./github/actions/spelling/expect.txt", 12 | // Some editor extensions will use `addWords` for adding words to your 13 | // personal dictionary. 14 | "addWords": true 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | [*] 7 | charset = utf-8 8 | # Use Unix-style new lines 9 | end_of_line = lf 10 | insert_final_newline = true 11 | # Default indentation is two spaces 12 | indent_style = space 13 | indent_size = 2 14 | # Remove whitespaces at end of line 15 | trim_trailing_whitespace = true 16 | -------------------------------------------------------------------------------- /.flox/.gitignore: -------------------------------------------------------------------------------- 1 | run/ 2 | cache/ 3 | lib/ 4 | log/ 5 | -------------------------------------------------------------------------------- /.flox/env.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EGI-documentation", 3 | "version": 1 4 | } 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 12 | 13 | # Short Description of the issue 14 | 15 | 20 | 21 | 23 | 24 | # Summary of proposed changes 25 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 9 | 10 | # Summary 11 | 12 | 13 | 14 | --- 15 | 16 | 17 | 18 | **Related issue :** 19 | -------------------------------------------------------------------------------- /.github/actions/spelling/excludes.txt: -------------------------------------------------------------------------------- 1 | # See https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-excludes 2 | # Ignore some docsy-realted folders 3 | ^archetypes/ 4 | ^assets/ 5 | ^themes/ 6 | ^layouts/ 7 | ^public/ 8 | ^static/ 9 | ^resources/ 10 | ^\.github/ 11 | ^\.gitmodules 12 | CODEOWNERS 13 | AUTHORS 14 | config\.toml$ 15 | (?:^|/)(?i)COPYRIGHT 16 | (?:^|/)(?i)LICEN[CS]E 17 | (?:^|/)3rdparty/ 18 | (?:^|/)go\.sum$ 19 | (?:^|/)package(?:-lock|)\.json$ 20 | (?:^|/)pyproject.toml 21 | (?:^|/)requirements(?:-dev|-doc|-test|)\.txt$ 22 | (?:^|/)vendor/ 23 | ignore$ 24 | \.a$ 25 | \.ai$ 26 | \.avi$ 27 | \.bmp$ 28 | \.bz2$ 29 | \.class$ 30 | \.coveragerc$ 31 | \.crt$ 32 | \.dll$ 33 | \.docx?$ 34 | \.drawio$ 35 | \.DS_Store$ 36 | \.eot$ 37 | \.exe$ 38 | \.gif$ 39 | \.git-blame-ignore-revs$ 40 | \.gitattributes$ 41 | \.graffle$ 42 | \.gz$ 43 | \.icns$ 44 | \.ico$ 45 | \.jar$ 46 | \.jks$ 47 | \.jpe?g$ 48 | \.key$ 49 | \.lib$ 50 | \.lock$ 51 | \.map$ 52 | \.min\.. 53 | \.mod$ 54 | \.mp[34]$ 55 | \.o$ 56 | \.ocf$ 57 | \.otf$ 58 | \.pdf$ 59 | \.pem$ 60 | \.png$ 61 | \.psd$ 62 | \.pyc$ 63 | \.pylintrc$ 64 | \.s$ 65 | \.svgz?$ 66 | \.tar$ 67 | \.tiff?$ 68 | \.ttf$ 69 | \.wav$ 70 | \.webm$ 71 | \.webp$ 72 | \.woff2?$ 73 | \.xlsx?$ 74 | \.zip$ 75 | ^\.github/actions/spelling/ 76 | ^\Q.github/workflows/spelling.yml\E$ 77 | -------------------------------------------------------------------------------- /.github/actions/spelling/expect.txt: -------------------------------------------------------------------------------- 1 | ADFS 2 | allowfullscreen 3 | autoplay 4 | checkin 5 | creds 6 | csr 7 | CVMFS 8 | dearmor 9 | delims 10 | dependant 11 | diracsgm 12 | findstr 13 | galdyn 14 | gecos 15 | geodata 16 | getstate 17 | glast 18 | hmac 19 | hyperk 20 | iframe 21 | Initialising 22 | jscpd 23 | jwt 24 | ligo 25 | lsb 26 | markdownlint 27 | mega 28 | mytoken 29 | mytokens 30 | newkey 31 | pem 32 | pheno 33 | pravda 34 | prettierrc 35 | reponame 36 | rsa 37 | scp 38 | seadatanet 39 | sgm 40 | snoplus 41 | supernemo 42 | tmp 43 | toml 44 | TRIVY 45 | unconfigured 46 | Unregistering 47 | workflows 48 | yml 49 | yyy 50 | -------------------------------------------------------------------------------- /.github/actions/spelling/line_forbidden.patterns: -------------------------------------------------------------------------------- 1 | # reject `m_data` as there's a certain OS which has evil defines that break things if it's used elsewhere 2 | # \bm_data\b 3 | 4 | # If you have a framework that uses `it()` for testing and `fit()` for debugging a specific test, 5 | # you might not want to check in code where you were debugging w/ `fit()`, in which case, you might want 6 | # to use this: 7 | #\bfit\( 8 | 9 | # s.b. GitHub 10 | \bGithub\b 11 | 12 | # s.b. GitLab 13 | \bGitlab\b 14 | 15 | # s.b. JavaScript 16 | \bJavascript\b 17 | 18 | # s.b. Microsoft 19 | \bMicroSoft\b 20 | 21 | # s.b. another 22 | \ban[- ]other\b 23 | 24 | # s.b. greater than 25 | \bgreater then\b 26 | 27 | # s.b. into 28 | \sin to\s 29 | 30 | # s.b. opt-in 31 | \sopt in\s 32 | 33 | # s.b. less than 34 | \bless then\b 35 | 36 | # s.b. otherwise 37 | \bother[- ]wise\b 38 | 39 | # s.b. nonexistent 40 | \bnon existing\b 41 | \b[Nn]o[nt][- ]existent\b 42 | 43 | # s.b. preexisting 44 | [Pp]re[- ]existing 45 | 46 | # s.b. preempt 47 | [Pp]re[- ]empt\b 48 | 49 | # s.b. preemptively 50 | [Pp]re[- ]emptively 51 | 52 | # s.b. reentrancy 53 | [Rr]e[- ]entrancy 54 | 55 | # s.b. reentrant 56 | [Rr]e[- ]entrant 57 | 58 | # s.b. workaround(s) 59 | \bwork[- ]arounds?\b 60 | 61 | # Reject duplicate words 62 | \s([A-Z]{3,}|[A-Z][a-z]{2,}|[a-z]{3,})\s\g{-1}\s 63 | -------------------------------------------------------------------------------- /.github/actions/spelling/reject.txt: -------------------------------------------------------------------------------- 1 | ^attache$ 2 | benefitting 3 | occurences? 4 | ^dependan.* 5 | ^oer$ 6 | Sorce 7 | ^[Ss]pae.* 8 | ^untill$ 9 | ^untilling$ 10 | ^wether.* 11 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 2 3 | updates: 4 | # Maintain dependencies for GitHub Actions 5 | - package-ecosystem: "github-actions" 6 | directory: "/" 7 | schedule: 8 | interval: "daily" 9 | -------------------------------------------------------------------------------- /.github/linters/.ecrc: -------------------------------------------------------------------------------- 1 | { 2 | "Verbose": false, 3 | "Debug": false, 4 | "IgnoreDefaults": false, 5 | "SpacesAfterTabs": false, 6 | "NoColor": false, 7 | "Exclude": ["\\.md$"], 8 | "Disable": { 9 | "EndOfLine": false, 10 | "Indentation": false, 11 | "InsertFinalNewline": false, 12 | "TrimTrailingWhitespace": false, 13 | "IndentSize": false, 14 | "MaxLineLength": false 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.github/linters/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | # https://black.readthedocs.io/en/stable/compatible_configs.html#flake8 3 | extend-ignore = E203,W503 4 | max-line-length = 88 5 | -------------------------------------------------------------------------------- /.github/linters/.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": { 3 | "line_length": 120, 4 | "code_blocks": false, 5 | "tables": false 6 | }, 7 | "MD014": false, 8 | "MD024": false, 9 | "MD026": { 10 | "punctuation": ".,:;!" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.github/linters/.secretlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": [ 3 | { 4 | "id": "@secretlint/secretlint-rule-preset-recommend", 5 | "rules": [ 6 | { 7 | "id": "@secretlint/secretlint-rule-basicauth", 8 | "options": { 9 | "allows": [ "/secret/i" ] 10 | } 11 | } 12 | ] 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /.github/linters/.textlintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "terminology": { 4 | "exclude": [ 5 | "Node(?:js)?" 6 | ] 7 | } 8 | }, 9 | "filters": { 10 | "comments": true, 11 | "allowlist": { 12 | "allow": [ 13 | "postcss-cli" 14 | ] 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- 1 | --- 2 | extends: default 3 | 4 | rules: 5 | line-length: 6 | max: 120 7 | truthy: 8 | check-keys: false 9 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Build documentation 3 | # Setup and build files with hugo 4 | # https://github.com/peaceiris/actions-hugo 5 | 6 | on: [pull_request] 7 | 8 | permissions: read-all 9 | 10 | jobs: 11 | build: 12 | name: Build with Hugo 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | with: 17 | # Fetch the Docsy theme 18 | submodules: recursive 19 | # Fetch all history for .GitInfo and .Lastmod 20 | fetch-depth: 0 21 | 22 | - name: Get Hugo version 23 | id: hugo_version 24 | uses: juliangruber/read-file-action@v1 25 | with: 26 | path: .github/workflows/hugo_version.txt 27 | 28 | - name: Setup Hugo 29 | uses: peaceiris/actions-hugo@v3 30 | with: 31 | hugo-version: "${{ steps.hugo_version.outputs.content }}" 32 | extended: true 33 | 34 | - name: Setup Node 35 | uses: actions/setup-node@v4 36 | with: 37 | node-version: "lts/*" 38 | 39 | - name: Cache dependencies 40 | uses: actions/cache@v4 41 | with: 42 | path: ~/.npm 43 | key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} 44 | restore-keys: | 45 | ${{ runner.os }}-node- 46 | 47 | - name: Install npm project with a clean slate 48 | run: npm ci 49 | 50 | - name: Build and minify using Hugo 51 | run: hugo --minify 52 | -------------------------------------------------------------------------------- /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Check links 3 | 4 | on: 5 | pull_request: 6 | schedule: 7 | # run on Sundays morning 8 | - cron: '32 9 * * 0' 9 | 10 | permissions: read-all 11 | 12 | jobs: 13 | markdown-link-check: 14 | name: Check links using markdown-link-check 15 | runs-on: ubuntu-latest 16 | 17 | steps: 18 | # Checks out a copy of your repository on the ubuntu-latest machine 19 | - name: Checkout code 20 | uses: actions/checkout@v4 21 | with: 22 | # Make sure the actual branch is checked out when running on PR 23 | ref: ${{ github.event.pull_request.head.sha }} 24 | # Full git history needed to get proper list of changed files 25 | fetch-depth: 0 26 | 27 | - name: Check links on new changes 28 | uses: gaurav-nelson/github-action-markdown-link-check@v1 29 | with: 30 | config-file: ".github/linters/mlc_config.json" 31 | check-modified-files-only: ${{ github.event_name == 'pull_request' && 'yes' || 'no' }} 32 | use-quiet-mode: "yes" 33 | use-verbose-mode: "yes" 34 | base-branch: "main" 35 | -------------------------------------------------------------------------------- /.github/workflows/delete_pr_preview.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Delete pull request preview 3 | 4 | on: 5 | # XXX: Use pull_request_target to delete previews of PRs from fork 6 | # It grants write access using the GITHUB_TOKEN, but it is safe as: 7 | # - No code from the PR is built or executed 8 | # - The worklfow file in use is the one from the base branch (main) 9 | pull_request_target: 10 | # Run for PR against main when label is removed or pull request closed 11 | types: 12 | - unlabeled 13 | - closed 14 | branches: 15 | - main 16 | 17 | permissions: read-all 18 | 19 | jobs: 20 | delete_preview: 21 | # XXX: Do not run at forks, and only if "safe for preview" label is set 22 | if: > 23 | github.repository == 'EGI-Federation/documentation' && 24 | ((github.event.action == 'unlabeled' && github.event.label.name == 'safe 25 | for preview') || (github.event.action == 'closed' && 26 | contains(github.event.pull_request.labels.*.name, 'safe for preview'))) 27 | name: Delete PR preview when a PR is closed or label removed 28 | # Ensure GITHUB_TOKEN can be usd to write to the repository content 29 | permissions: 30 | contents: write 31 | runs-on: ubuntu-latest 32 | steps: 33 | - uses: actions/checkout@v4 34 | with: 35 | ref: "pr_previews" 36 | 37 | - name: Delete pull request preview and commit changes 38 | uses: EndBug/add-and-commit@v9 39 | with: 40 | remove: "-r ${{ github.event.number }}/" 41 | message: "Purge preview for PR ${{ github.event.number }}" 42 | -------------------------------------------------------------------------------- /.github/workflows/hugo_version.txt: -------------------------------------------------------------------------------- 1 | 0.110.0 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /resources/_gen/ 2 | /public/* 3 | !/public/.gitkeep 4 | # From NodeJS for docsy 5 | node_modules/ 6 | .hugo_build.lock 7 | .DS_Store 8 | .direnv/ 9 | .envrc 10 | flake.nix 11 | flake.lock 12 | 13 | # ignore local megalinter reports 14 | megalinter-reports 15 | -------------------------------------------------------------------------------- /.gitleaksignore: -------------------------------------------------------------------------------- 1 | content/en/providers/check-in/sp/_index.md:generic-api-key:639 2 | content/en/providers/check-in/sp/_index.md:generic-api-key:695 3 | content/en/providers/check-in/sp/_index.md:generic-api-key:784 4 | content/en/providers/check-in/sp/_index.md:generic-api-key:786 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "themes/docsy"] 2 | path = themes/docsy 3 | url = https://github.com/google/docsy.git 4 | -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- 1 | http://cvmfs-release01.gridpp.rl.ac.uk/* 2 | http://localhost 3 | https://aai.egi.eu/LoA 4 | https://aai.egi.eu/proxy 5 | https://b2drop.eudat.eu/settings/user/security 6 | https://docs.egi.eu/documentation/* 7 | https://github.com/* 8 | https://goc.egi.eu/gocdbpi 9 | https://helpdesk.egi.eu 10 | https://megalinter.io/* 11 | https://omnibenchmark.org/* 12 | https://operations-portal.egi.eu/downtimes/subscription 13 | https://operations-portal.egi.eu/home/tasksList 14 | https://operations-portal.egi.eu/vo 15 | https://servproject.i3m.upv.es/ec3-ltos/ 16 | https://tools.ietf.org/html/rfc* 17 | https://training.notebooks.egi.eu 18 | https://voms2.hellasgrid.gr:8443/voms* 19 | https://www.eugridpma.org/your-identity/ 20 | https://fts-egi.cern.ch:8446/ 21 | https://fts-egi.cern.ch/fts3/ftsmon/ 22 | -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- 1 | ENABLE_LINTERS: 2 | - MARKDOWN_MARKDOWNLINT 3 | - MARKDOWN_MARKDOWN_LINK_CHECK 4 | - SPELL_CSPELL 5 | DISABLE_LINTERS: 6 | - REPOSITORY_GRYPE 7 | - REPOSITORY_TRIVY 8 | - REPOSITORY_TRUFFLEHOG 9 | - SPELL_CSPELL 10 | MARKDOWN_MARKDOWN_LINK_CHECK_CONFIG_FILE: .github/linters/mlc_config.json 11 | SPELL_CSPELL_CONFIG_FILE: .cspell.json 12 | APPLY_FIXES: none 13 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | # See https://pre-commit.com for more information 2 | # See https://pre-commit.com/hooks.html for more hooks 3 | repos: 4 | - repo: https://github.com/oxsecurity/megalinter 5 | rev: v8.7.0 6 | hooks: 7 | - id: megalinter-incremental 8 | - repo: https://github.com/python-jsonschema/check-jsonschema 9 | rev: 0.33.0 10 | hooks: 11 | - id: check-github-workflows 12 | # Disabling markdown-link-check because it can not reliably check anchors and links against the source code. 13 | # Suggest using lychee instead (way faster and more accurate) 14 | - repo: https://github.com/tcort/markdown-link-check 15 | rev: v3.13.7 16 | hooks: 17 | - id: markdown-link-check 18 | args: 19 | - -c 20 | - .github/linters/mlc_config.json 21 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .*ignore 2 | *.txt 3 | LICENSE 4 | -------------------------------------------------------------------------------- /.prettierrc.toml: -------------------------------------------------------------------------------- 1 | # Configuration for prettier 2 | # https://prettier.io/docs/en/configuration.html 3 | proseWrap = "always" 4 | tabWidth = 2 5 | printWidth = 80 6 | 7 | plugins = ["prettier-plugin-go-template"] 8 | 9 | [[overrides]] 10 | files = ["layouts/partials/*.html"] 11 | [overrides.options] 12 | parser = "go-template" 13 | proseWrap = "preserve" 14 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Maintainers 2 | ----------- 3 | Enol Fernandez 4 | Baptiste Grenier 5 | 6 | Contributors 7 | ------------ 8 | 9 | See https://github.com/EGI-Federation/documentation/graphs/contributors 10 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners 2 | # https://github.blog/2017-07-06-introducing-code-owners/ 3 | 4 | # Assign code owners that will automatically get asked to review Pull Requests 5 | # The last matching pattern takes the most precedence. 6 | 7 | # These owners will be the default owners for everything in the repo. 8 | # Unless a later match takes precedence, they will be requested for 9 | # review when someone opens a pull request. 10 | * @enolfc @glarocca @andrea-manzi @EGI-Federation/sdis 11 | 12 | # Internal services 13 | content/en/internal/ @EGI-Federation/sdis 14 | 15 | # Providers 16 | content/en/providers/ @EGI-Federation/sdis 17 | 18 | # Users 19 | content/en/users/ @enolfc @glarocca @andrea-manzi @sebastian-luna-valero 20 | 21 | # Storage-related services 22 | content/en/users/data/ @andrea-manzi @glarocca 23 | content/en/providers/datahub/ @andrea-manzi @glarocca 24 | 25 | # dev-env 26 | content/en/users/dev-env/ @enolfc @glarocca 27 | 28 | # FedCloud 29 | content/en/users/compute/ @enolfc @glarocca 30 | content/en/providers/cloud-compute/ @enolfc @CatalinCondurache 31 | 32 | # Notebooks 33 | content/en/users/dev-env/notebooks/ @enolfc @andrea-manzi @sebastian-luna-valero @glarocca 34 | content/en/users/providers/notebooks/ @enolfc @andrea-manzi @sebastian-luna-valero 35 | content/en/users/dev-env/replay/ @enolfc @andrea-manzi @sebastian-luna-valero @glarocca 36 | 37 | # Training 38 | content/en/users/training/ @glarocca @sebastian-luna-valero 39 | 40 | # Tutorials 41 | content/en/users/tutorials/ @enolfc @sebastian-luna-valero @glarocca 42 | 43 | # Workload Manager 44 | content/en/users/compute/orchestration/workload-manager/ @enolfc @glarocca 45 | 46 | # Check-in 47 | content/en/users/aai/ @vardizzo-lab 48 | content/en/providers/check-in/ @vardizzo-lab 49 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Check the [contributing guide at GitHub](content/en/about/contributing/_index.md). 4 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | This project is licensed under MIT. 2 | 3 | Copyrights in this project are retained by their contributors. 4 | No copyright assignment is required to contribute to this project. 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 The authors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Nothing defined here. The Hugo project that uses this theme can override theme variables by adding a file to: 4 | 5 | */ 6 | 7 | // Theme colors 8 | 9 | $primary: rgb(80, 135, 180) !default; 10 | 11 | // Fonts 12 | 13 | $font-size-base: 0.9rem !default; 14 | 15 | $mark-padding: 0.12em !default; 16 | $list-inline-padding: 0.35rem !default; 17 | 18 | // Display styles 19 | 20 | $display1-size: 2.5rem !default; 21 | $display2-size: 2rem !default; 22 | $display3-size: 1.5rem !default; 23 | $display4-size: 1.12rem !default; 24 | 25 | // Space 26 | 27 | $spacer: 0.5rem; 28 | 29 | // Navs 30 | 31 | $nav-link-padding-y: 0.25rem !default; 32 | $nav-link-padding-x: 0.6rem !default; 33 | 34 | // 35 | // Style Markdown content 36 | // 37 | 38 | .td-content { 39 | > .tabx-content { 40 | /* stylelint-disable at-rule-no-unknown */ 41 | @extend .td-max-width-on-larger-screens; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /content/en/_footer.md: -------------------------------------------------------------------------------- 1 | 2 | [EGI Foundation](https://www.egi.eu) 3 | 4 | -------------------------------------------------------------------------------- /content/en/about/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "About" 3 | description: "About EGI Documentation" 4 | type: docs 5 | menu: 6 | main: 7 | weight: 50 8 | pre: 9 | --- 10 | 11 | The EGI documentation is written in [Markdown](https://spec.commonmark.org/0.29/), 12 | uses the [Docsy](https://github.com/google/docsy) theme, and is built 13 | using [Hugo](https://gohugo.io). 14 | 15 | {{% alert title="Note" color="info" %}} The documentation covering the 16 | [EGI Services](https://www.egi.eu/services/) is maintained by the EGI Community 17 | and coordinated by the 18 | [EGI Foundation](https://www.egi.eu/about/egi-foundation/). Everyone is invited 19 | to participate by following the [Contributing Guide](contributing). 20 | {{% /alert %}} 21 | -------------------------------------------------------------------------------- /content/en/about/concepts/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/about/concepts/metadata.png -------------------------------------------------------------------------------- /content/en/about/concepts/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/about/concepts/page.png -------------------------------------------------------------------------------- /content/en/about/concepts/section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/about/concepts/section.png -------------------------------------------------------------------------------- /content/en/internal/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Internal Services" 3 | description: "Documentation for internal EGI services" 4 | weight: 30 5 | type: "docs" 6 | menu: 7 | main: 8 | weight: 30 9 | pre: 10 | --- 11 | 12 | This section contains documentation about the 13 | [internal EGI services](https://www.egi.eu/internal-services/). These services 14 | are being operated centrally on behalf of EGI, and are supporting the 15 | coordination of the EGI Federation. 16 | 17 | {{% alert title="Note" color="info" %}} See the [User Guides](../users) section 18 | for documentation about public EGI services, and the 19 | [Service Providers](../providers) section for details on how to integrate 20 | providers into the EGI Federation. {{% /alert %}} 21 | 22 | ## Guidelines for software development 23 | 24 | We provide 25 | [Guidelines for software development](./guidelines-software-development) to be 26 | considered when developing a product for the EGI Federation. 27 | 28 | ## Request for information 29 | 30 | You can ask for more information about the internal EGI services 31 | [on our site](https://www.egi.eu/contact-us). 32 | -------------------------------------------------------------------------------- /content/en/internal/accounting/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Accounting" 3 | type: docs 4 | weight: 20 5 | description: > 6 | Resource usage accounting for EGI services 7 | --- 8 | 9 | ## What is it? 10 | 11 | [EGI Accounting](./service-information) **tracks and reports usage of EGI 12 | services**, offering insights and control over resource consumption. EGI 13 | Federation members can use it to account for the resource usage of their own 14 | services. 15 | 16 | EGI Accounting consists of two main components: 17 | 18 | - The **Accounting Repository** is where all accounting data is collected by a 19 | network of message brokers that transfer usage data from hosts and services. 20 | - The **[Accounting Portal](https://accounting.egi.eu)** allows filtering and 21 | displaying resource usage information. 22 | 23 | ## Publishing Accounting 24 | 25 | - [HTCondor-CE Accounting](../../providers/high-throughput-compute/htcondor-ce-accounting). 26 | - [Storage Accounting](../../providers/high-throughput-compute/storage-accounting). 27 | 28 | {{% alert title="Note" color="info" %}} Documentation for the Accounting 29 | Repository is also available in the 30 | [EGI Wiki](https://wiki.egi.eu/wiki/Accounting_Repository), documentation for 31 | the Accounting Portal is also available in the 32 | [EGI Wiki](https://wiki.egi.eu/wiki/Accounting_Portal). {{% /alert %}} 33 | -------------------------------------------------------------------------------- /content/en/internal/accounting/record-and-message-formats/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Record and Message Formats" 3 | weight: 20 4 | type: "docs" 5 | description: "EGI Accounting record and message formats" 6 | --- 7 | 8 | ## Grid Accounting 9 | 10 | Grid accounting can either be sent as Individual or Summary job records. 11 | Summary Sync records can be sent in either case, and provide a mechanism to 12 | validate that all records stored locally at a site have been published. 13 | 14 | - [Individual Job Records and Messages](grid-accounting#individual-job-records-and-messages) 15 | - [Summary Job Records and Messages](grid-accounting#summary-job-records-and-messages) 16 | - [Summary Sync Records and Messages](grid-accounting#summary-sync-records-and-messages) 17 | -------------------------------------------------------------------------------- /content/en/internal/configuration-database/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Configuration Database" 3 | weight: 30 4 | type: "docs" 5 | description: > 6 | Topology and configuration registry for sites in EGI infrastructure 7 | --- 8 | 9 | ## What is it? 10 | 11 | The [EGI Configuration Database](https://goc.egi.eu) (GOCDB) is a **central 12 | registry that records topology information about all sites** participating in 13 | the EGI infrastructure. 14 | 15 | The configuration database also provides different rules and grouping mechanisms 16 | for filtering and managing the information associated to resources. This can 17 | include entities such as operations and resource centres, service endpoints and 18 | their downtimes, contact information and roles of staff responsible for 19 | operations at different levels. 20 | 21 | The configuration database is used by all the actors (end users, site managers, 22 | NGI managers, support teams, VO managers), by other tools, and by third party 23 | middleware to discover information about the infrastructure topology. 24 | -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/add-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/add-endpoint.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/completed-service-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/completed-service-overview.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/service-description-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/service-description-review.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/service-edition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/service-edition.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/service-endpoint-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/service-endpoint-page.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/service-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/service-overview.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/service-summary-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/service-summary-page.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/adding-service-endpoint/site-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/configuration-database/adding-service-endpoint/site-overview.png -------------------------------------------------------------------------------- /content/en/internal/configuration-database/ngis/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Managing NGIs entities 3 | description: "Managing NGIs entities" 4 | weight: 30 5 | type: "docs" 6 | --- 7 | 8 | ## Introduction 9 | 10 | An NGI forms a grouping of Sites in EGI Configuration Database. The 11 | Configuration Database stores the following information about these groups. The 12 | main page listing groups actually shows NGIs/ROCs, and is available from **"List 13 | of NGIs/ROCs and associated contacts"**, linked from the main menu. 14 | 15 | Each NGI has its own listing page, accessible by clicking on the "view" link in 16 | group listing pages. A group details page shows users with a role on that group, 17 | as well as member sites and associated contacts and roles. 18 | 19 | ## Adding NGIs 20 | 21 | Adding groups is not possible through the Input System web interface. If you 22 | want to start the registration process of a new NGI, please follow the procedure 23 | described on: 24 | 25 | > [PROC02: Operations Centre creation](https://go.egi.eu/proc02) 26 | 27 | Integration of the new group in the EGI Configuration Database is part of the 28 | procedure but has to be done by the Configuration Database admins. 29 | 30 | ## Editing Groups 31 | 32 | To edit a group, simply click on the "edit" link at the top of the group's 33 | details page. 34 | 35 | ## Deleting Groups 36 | 37 | This operation is not allowed. 38 | -------------------------------------------------------------------------------- /content/en/internal/configuration-database/service-groups/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Service groups 3 | description: "Understanding and manipulating service groups" 4 | weight: 30 5 | type: "docs" 6 | --- 7 | 8 | ## Service Groups 9 | 10 | A service group is an arbitrary grouping of existing service endpoints that can 11 | be distributed across different physical sites and users that belong to the SG 12 | (SGs were previously known as 'Virtual Sites'): 13 | 14 | - Each service that appears in a group **must already exist and be hosted by a 15 | physical site**. 16 | - A service group role does **not extend any permissions** over its child 17 | services. This means that you cannot declare a downtime on the services that 18 | you group together or modify the service attributes. 19 | - Any GOCDB user can create their own service group and as the 'Service Group 20 | Administrator' you can control subsequent user membership requests to the SG 21 | (everything is logged, including who created the service group). 22 | - GOCDB users can request to join an existing service group by finding the 23 | target SG and requesting a role on that SG. 24 | - Service groups are typically used for monitoring a particular collection of 25 | services and/or users using the GOCDB 'get_service_group' and 26 | 'get_service_group_role' PI methods. 27 | - SG members can be listed using the get_service_group_role PI method. 28 | - PI doc: 29 | - [get_service_group](https://wiki.egi.eu/wiki/GOCDB/PI/get_service_group)(link 30 | to old EGI Wiki) 31 | - [get_service_group_role](https://wiki.egi.eu/wiki/GOCDB/PI/get_service_group_role)(link 32 | to old EGI Wiki) 33 | - If you have any further use-cases or suggestions, please submit a GGUS ticket. 34 | -------------------------------------------------------------------------------- /content/en/internal/configuration-database/service-registration-requirements/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Service registration requirements 3 | description: 4 | "Information required for registering a service into the Configuration Database" 5 | weight: 50 6 | type: "docs" 7 | --- 8 | 9 | Information to provide when registering a new service (the fields marked with an 10 | asterisk are mandatory): 11 | 12 | - Hosting Site \* (select the appropriate RC under which you are registering the 13 | service) 14 | - Service Type \* (select the appropriate service type) 15 | - Service URL (Alphanumeric and $-\_.+!\*'(),:) 16 | - Hostname \* (valid FQDN format) 17 | - Host IP a.b.c.d 18 | - Host IPv6 (0000:0000:0000:0000:0000:0000:0000:0000[/int]) (optional [/int] 19 | range) 20 | - Host DN (/C=.../OU=.../...) 21 | - Description \* (Alphanumeric and basic punctuation) 22 | - Host Operating System (Alphanumeric and basic punctuation) 23 | - Host Architecture (Alphanumeric and basic punctuation) 24 | - Is it a beta service (formerly PPS service)? Y/N 25 | - Is this service in production? Y/N 26 | - Is this service monitored? Y/N 27 | - Contact email \* (valid email format) 28 | 29 | ## Scope Tags 30 | 31 | - ✓ Optional Tags (At least 1 optional tags must be selected): EGI Local 32 | FedCloud 33 | - ✓ Reserved Tags Inheritable from Parent Site: none 34 | - ✓ Reserved Tags Directly Assigned (WARNING - If deselected you will not be 35 | able to reselect the tag - it will be moved to the 'Protected Reserved Tags' 36 | list): none 37 | - ✗ Protected Reserved Tags (Can only be assigned on request): alice atlas cms 38 | elixir lhcb tier1 tier2 wlcg 39 | -------------------------------------------------------------------------------- /content/en/internal/configuration-database/users-roles/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Users and roles" 3 | weight: 30 4 | type: "docs" 5 | description: "Guide about user accounts and the roles" 6 | --- 7 | 8 | ## Introduction 9 | 10 | In the sub-pages there is an explanation over the EGI Configuration Database 11 | user accounts, how to manage them, and the roles defined. 12 | -------------------------------------------------------------------------------- /content/en/internal/configuration-database/users-roles/approve-revoke/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Approving/revoking accounts, roles and other actions 3 | description: "Approving/revoking accounts, roles and other actions" 4 | weight: 30 5 | type: "docs" 6 | --- 7 | 8 | ## Approving role and change requests 9 | 10 | When a registered user applies for a role, the request has to be validated by 11 | someone who has the proper permissions to grant such a role. If you request a 12 | role on a given entity, any user with a valid role on that entity or above will 13 | be able to approve your request. 14 | 15 | _Example_ - If you request a "site administrator" role on site X, then the 16 | following users can approve your request: 17 | 18 | - site administrators and security officers of site X 19 | - regional operations staff, managers and deputies of the 20 | [Operations Centre](https://confluence.egi.eu/display/EGIG/Operations+Centre) 21 | to which site X belongs 22 | - GOCDB admins 23 | 24 | Role requests you can approve are listed on the **Manage roles** page 25 | (accessible by clicking the **Manage roles** link in the user status panel in 26 | the sidebar). 27 | 28 | In order to approve or decline role requests, simply click on the **accept** or 29 | **deny** links in front of each role request. 30 | 31 | ## Revoking roles 32 | 33 | If a user within your scope has a role that needs to be revoked, you can do this 34 | from the user's page, where user's details are listed along with his/her current 35 | roles. To revoke a role, simply click on the role name then on the **revoke** 36 | link at the top right of the role's details page. 37 | 38 | **Note**: This works for other users within your scope but also for yourself. 39 | However just note that if you revoke your own roles you may not have proper 40 | permissions to recover them afterwards. 41 | -------------------------------------------------------------------------------- /content/en/internal/getting-started/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Getting Started" 3 | description: "Introduction to internal EGI services" 4 | type: docs 5 | weight: 10 6 | --- 7 | 8 | Use this section to get started quickly with internal EGI services: 9 | 10 | - The [complete list](https://www.egi.eu/services/federation/) of internal 11 | EGI services supporting the coordination of the EGI Federation offers 12 | insight into how EGI is able to offer advanced public cloud services 13 | - The [**Configuration Database**](https://goc.egi.eu) records the topology 14 | of the sites in the EGI federation 15 | - [**Service Monitoring**](https://argo.egi.eu) tracks and controls the 16 | performance of the services 17 | - [**Accounting**](https://accounting.egi.eu) tracks service and resource 18 | usage, providing insights and reports on consumption 19 | - The [**Helpdesk**](https://helpdesk.egi.eu) lets users and providers report 20 | incidents and bugs, or request changes 21 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Helpdesk" 3 | type: docs 4 | weight: 40 5 | description: > 6 | EGI Helpdesk 7 | --- 8 | 9 | ## What is it? 10 | 11 | Support for EGI services is available through the 12 | [EGI Helpdesk](https://helpdesk.egi.eu). 13 | 14 | The EGI Helpdesk is a distributed tool with central coordination, which provides 15 | the information and support needed to troubleshoot product and service problems. 16 | Users can **report incidents**, **bugs** or **request changes**. 17 | 18 | The support activities are grouped into first and second level support. 19 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/access-and-roles/create-ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/access-and-roles/create-ticket.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/access-and-roles/owned-roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/access-and-roles/owned-roles.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Helpdesk features" 3 | type: docs 4 | weight: 30 5 | description: "Helpdesk features" 6 | --- 7 | 8 | The pages of this section detail multiple features of the [EGI Helpdesk](../). 9 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/alarm-tickets/Alarm_Notify_Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/alarm-tickets/Alarm_Notify_Mail.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/alarm-tickets/Alarm_Submit_Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/alarm-tickets/Alarm_Submit_Form.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/alarm-tickets/Alarm_Submit_Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/alarm-tickets/Alarm_Submit_Link.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/alarm-tickets/Alarm_T1_Dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/alarm-tickets/Alarm_T1_Dropdown.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/alarm-tickets/GGUS_Graph_ALARM_Ticket_Process.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/alarm-tickets/GGUS_Graph_ALARM_Ticket_Process.pdf -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/alarm-tickets/GGUS_Graph_Alarm-ticket-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/alarm-tickets/GGUS_Graph_Alarm-ticket-process.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/alarm-tickets/LHC_T1s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/alarm-tickets/LHC_T1s.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/quality-of-support-levels/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Quality of Support (QoS) levels" 3 | type: docs 4 | weight: 40 5 | description: > 6 | Quality of Support (QoS) levels 7 | --- 8 | 9 | ## Introduction 10 | 11 | QoS stands for Quality of Support. It describes the level of support provided by 12 | Support Units in GGUS system. 13 | 14 | It has an impact on the ticket 15 | [priority colour](../ticket-priority) in GGUS and the warnings are sent 16 | to SUs if 75% of the maximum response time of the QoS level are over. 17 | 18 | ## QoS levels 19 | 20 | There are three different QoS levels, each defining different response times for 21 | given Ticket Priority. 22 | 23 | - Base 24 | - Medium 25 | - Advanced 26 | 27 | The default QoS level, if not declared differently, is **Base**. 28 | 29 | ### Base Level 30 | 31 | Base QoS level defines a response time of **5 working days** regardless of the 32 | ticket priority. 33 | 34 | ### Medium Level 35 | 36 | | Ticket Priority | Response time | 37 | | --------------- | -------------- | 38 | | less urgent | 5 working days | 39 | | urgent | 5 working days | 40 | | very urgent | 1 working day | 41 | | top priority | 1 working day | 42 | 43 | ### Advanced service 44 | 45 | | Ticket Priority | Response time | 46 | | --------------- | --------------- | 47 | | less urgent | 5 working days | 48 | | urgent | 1 working day | 49 | | very urgent | 1 working day | 50 | | top priority | 4 working hours | 51 | 52 | ## QoS level declaration 53 | 54 | The QoS level for all of the SUs are available 55 | [here](https://ggus.eu/?mode=resp_unit_info) 56 | 57 | For the several EGI services, the QoS levels are defined in the specific 58 | Operational Level Agreements linked in the 59 | [EGI OLA SLA framework page](https://confluence.egi.eu/display/EGISLM/EGI+OLA+SLA+framework#EGIOLASLAframework-OperationalLevelAgreements) 60 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/team-tickets/GGUS_Graph_TEAM_Ticket_Process.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/team-tickets/GGUS_Graph_TEAM_Ticket_Process.pdf -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/team-tickets/GGUS_Graph_Team-ticket-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/team-tickets/GGUS_Graph_Team-ticket-process.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/team-tickets/Submit_Form_Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/team-tickets/Submit_Form_Team.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/team-tickets/Submit_Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/team-tickets/Submit_Team.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/team-tickets/Team_to_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/team-tickets/Team_to_alarm.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/ticket-priority/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ticket Priority" 3 | type: docs 4 | weight: 40 5 | description: > 6 | Definition and computation of the ticket priority in relation to the QoS levels 7 | --- 8 | 9 | ## Priority definition 10 | 11 | If you plan to adjust the ticket priority of a ticket we kindly ask you to 12 | provide also justification for this change in the reply text box of the ticket. 13 | 14 | The following table will help you to find an appropriate priority value: 15 | 16 | | Priority | Comment | 17 | | ------------ | -------------------------------------------------------------- | 18 | | very urgent | service interrupted; needs to be addressed as soon as possible | 19 | | urgent | service degraded; a workaround might or might not be available | 20 | | less urgent | wishes and enhancements that are "nice to have" | 21 | 22 | In particular, be very economical when choosing 'very urgent'. This value, when 23 | reaching the supporters via another ticketing system interface, might become a 24 | beep or phone alert even in the middle of the night. This level of support is 25 | ONLY committed by WLCG Tier0 and Tier1s and ONLY for ALARM tickets. 26 | 27 | Finally, please be aware that the supporter who will try to solve your problem 28 | may change the value you have chosen to a more realistic one, putting their 29 | justification in the ticket. 30 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/ticket-scope/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ticket Scope" 3 | type: docs 4 | weight: 40 5 | description: Description of ticket scopes 6 | --- 7 | 8 | ## Priority definition 9 | 10 | The GGUS ticket **scope** filter is available in GGUS ticket search. It offers 11 | filtering for tickets in **EGI** or **WLCG** scope. The ticket scope field is 12 | automatically set by the system based on the qualifications listed below. 13 | 14 | **WLCG scope** tickets are either: 15 | 16 | - of type `TEAM` or `ALARM` related to VOs `alice`, `atlas`, `cms`, `lhcb`, 17 | `belle` 18 | - assigned to `VOSupport` related to VOs `alice`, `atlas`, `cms`, `lhcb`, 19 | `belle` 20 | - assigned to `OSG Software Support`, `USCMS`, `USATLAS`, `USBELLE`, `CRIC` 21 | - with issue type like `CMS_`, `ATLAS_` 22 | 23 | > All other tickets are **EGI scope**. 24 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/tickets-to-multiple-sites/create-multi-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/tickets-to-multiple-sites/create-multi-tickets.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/tickets-to-multiple-sites/multiple-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/tickets-to-multiple-sites/multiple-tickets.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/features/tickets-to-multiple-sites/multisite-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/features/tickets-to-multiple-sites/multisite-search.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/service-information/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Service information" 3 | weight: 10 4 | type: "docs" 5 | description: "Technical details of EGI Helpdesk" 6 | --- 7 | 8 | ## Identity card 9 | 10 | 11 | 12 | | Property | Value | 13 | | ---------------------------- | ------------------------------------------------------------------- | 14 | | Name | Helpdesk | 15 | | Description | Central helpdesk providing a single interface to EGI support | 16 | | URL | https://helpdesk.egi.eu | 17 | | Support Email | support at ggus.eu | 18 | | [Helpdesk](..) Support Unit | **EGI Services and Service Components**
I\_\_ Helpdesk (GGUS) | 19 | | Configuration Database entry | https://goc.egi.eu/portal/index.php?Page_Type=Site&id=247 | 20 | | Supplier | KIT | 21 | | Roadmap | N/A | 22 | | Release notes | https://ggus.eu/index.php?mode=release_notes | 23 | | Source code | Not available | 24 | | Issue tracker for developers | N/A | 25 | | License | BMC Software Inc. | 26 | | Privacy Policy | https://ggus.eu/?mode=privacy | 27 | 28 | 29 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/Account_Update_PersistentID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/Account_Update_PersistentID.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/Complete_Ticket_List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/Complete_Ticket_List.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_Confirm_Submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_Confirm_Submit.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_EGI_AAI_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_EGI_AAI_1.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_Escal_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_Escal_Button.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_Home.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_Modifysection_User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_Modifysection_User.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_Registration_Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_Registration_Form.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_Subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_Subscribe.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_User_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_User_Search.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/GGUS_Verify_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/GGUS_Verify_Button.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/Ticket_History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/Ticket_History.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/Ticket_Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/Ticket_Information.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/Ticket_Submit_Form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/Ticket_Submit_Form.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/UG_Unregistered_User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/UG_Unregistered_User.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/create-ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/create-ticket.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/dashboard-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/dashboard-page.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/new-ticket-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/new-ticket-form.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/new-ticket-form2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/new-ticket-form2.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/support-groups-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/support-groups-field.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/tags-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/tags-links.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/text-box-icons1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/text-box-icons1.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/text-box-involve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/text-box-involve.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/text-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/text-box.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/user-guide/ticket-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/user-guide/ticket-history.png -------------------------------------------------------------------------------- /content/en/internal/helpdesk/workflows/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Workflows" 3 | type: docs 4 | weight: 60 5 | description: Workflows 6 | --- 7 | 8 | Description of some of the Helpdesk workflows. 9 | -------------------------------------------------------------------------------- /content/en/internal/helpdesk/workflows/waiting-for-submitter/GGUS_Graph_WaitingForSubmitter-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/helpdesk/workflows/waiting-for-submitter/GGUS_Graph_WaitingForSubmitter-workflow.png -------------------------------------------------------------------------------- /content/en/internal/messaging/messaging-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/messaging/messaging-diagram.png -------------------------------------------------------------------------------- /content/en/internal/operations-portal/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Operations Portal" 3 | weight: 60 4 | type: "docs" 5 | description: "Central portal supporting EGI infrastructure operations" 6 | --- 7 | 8 | ## What is it? 9 | 10 | The [EGI Operations Portal](https://operations-portal.egi.eu) is a central 11 | portal for supporting the operations and coordination of the EGI Infrastructure. 12 | It offers a bundle of different capabilities, such as: 13 | 14 | - The **Broadcast tool**: used to contact and inform the different actors of the 15 | project for specific problems or global announcements. 16 | - The **operations and security dashboards**: to detect, track and follow-up 17 | problems and incident on the resource centers. 18 | - The **VO Management tools**: to register, update, consult information about 19 | virtual communities. 20 | - The **Metrics module**: to provide metrics and indicators about the different 21 | activities of the project linked to VOs, users. 22 | - The **SLA module**: to provide information about performances for the cloud 23 | sites and SLA Violations for different group of services. 24 | 25 | {{% alert title="Note" color="info" %}} Documentation for the Operations Portal 26 | is available in the [IN2P3 Wiki](https://forge.in2p3.fr/projects/opsportaluser/wiki/Main_Features_of_the_dashboard). 27 | {{% /alert %}} 28 | -------------------------------------------------------------------------------- /content/en/internal/operations-portal/using-vapor/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using VAPOR" 3 | weight: 20 4 | type: "docs" 5 | description: "Using VAPOR" 6 | --- 7 | 8 | ## What is it? 9 | 10 | VAPOR is a component of the Operations Portal allowing to query the information 11 | system, aggregating information from Top BDII and 12 | [EGI Configuration Database](../../configuration-database). 13 | 14 | ## Using VAPOR to query resources using a graphical interface 15 | 16 | [VAPOR](https://operations-portal.egi.eu/vapor/), a component of the 17 | [Operations Portal](../../../internal/operations-portal), provides a graphical 18 | resources explorer. 19 | 20 | It can be used as an alternative to querying the Top BDII using `ldapsearch`. 21 | 22 | ![VAPOR: overview of resources for dteam](vapor-dteam-computing-overview.png) 23 | 24 | Using the left menu you can select a VO and filter the different resources 25 | types. 26 | 27 | ![VAPOR: filtering resources for dteam](vapor-dteam-computing-shares.png) 28 | 29 | VAPOR will list the matching resources. 30 | 31 | ![VAPOR: detail of resources for dteam](vapor-dteam-computing-resources.png) 32 | -------------------------------------------------------------------------------- /content/en/internal/operations-portal/using-vapor/vapor-dteam-computing-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/operations-portal/using-vapor/vapor-dteam-computing-overview.png -------------------------------------------------------------------------------- /content/en/internal/operations-portal/using-vapor/vapor-dteam-computing-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/operations-portal/using-vapor/vapor-dteam-computing-resources.png -------------------------------------------------------------------------------- /content/en/internal/operations-portal/using-vapor/vapor-dteam-computing-shares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/internal/operations-portal/using-vapor/vapor-dteam-computing-shares.png -------------------------------------------------------------------------------- /content/en/providers/check-in/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Check-in" 3 | description: "Integration with Check-in for IdPs and SPs" 4 | weight: 20 5 | type: "docs" 6 | --- 7 | -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/oidc-examples-keycloak-add-oidc-idp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/oidc-examples-keycloak-add-oidc-idp-1.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/oidc-examples-keycloak-add-oidc-idp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/oidc-examples-keycloak-add-oidc-idp-2.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/oidc-examples-keycloak-idp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/oidc-examples-keycloak-idp.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-eduperson-entitlement-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-eduperson-entitlement-mapper.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-idp-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-idp-advanced.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-idp-oidc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-idp-oidc.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-voperson-id-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/oidc-examples-keycloak-oidc-voperson-id-mapper.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/saml-examples-keycloak-add-saml-idp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/saml-examples-keycloak-add-saml-idp-1.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/saml-examples-keycloak-add-saml-idp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/saml-examples-keycloak-add-saml-idp-2.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/saml-examples-keycloak-idp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/saml-examples-keycloak-idp.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/saml-examples-keycloak-saml-edupersonentitlement-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/saml-examples-keycloak-saml-edupersonentitlement-mapper.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/saml-examples-keycloak-saml-idp-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/saml-examples-keycloak-saml-idp-advanced.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/saml-examples-keycloak-saml-idp-saml-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/saml-examples-keycloak-saml-idp-saml-setting.png -------------------------------------------------------------------------------- /content/en/providers/check-in/sp/saml-examples-keycloak-saml-vopersonid-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/check-in/sp/saml-examples-keycloak-saml-vopersonid-mapper.png -------------------------------------------------------------------------------- /content/en/providers/cloud-compute/openstack/openstacksite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/cloud-compute/openstack/openstacksite.png -------------------------------------------------------------------------------- /content/en/providers/cloud-compute/openstack/useful-resources/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Useful Resources" 3 | weight: 60 4 | type: "docs" 5 | description: > 6 | Collection of useful resources for OpenStack administrators 7 | --- 8 | 9 | In this page we gather a list of useful resources for OpenStack administrators. 10 | 11 | ## OpenStack IDLE VM Detector (osidle) 12 | 13 | Our partners from [GRyCAP UPV](https://grycap.upv.es/) have created a tool 14 | to analyze the usage of Virtual Machines running in OpenStack. For more 15 | information please visit: 16 | [https://github.com/grycap/osidle/](https://github.com/grycap/osidle/). 17 | 18 | ## Share yours 19 | 20 | Would you like to share your favourite tool to make OpenStack management easier? 21 | Then [contact us](../../../../support/)! 22 | -------------------------------------------------------------------------------- /content/en/providers/datahub/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "DataHub" 3 | linkTitle: "DataHub" 4 | type: docs 5 | description: "Documentation for EGI DataHub Service Providers" 6 | weight: 60 7 | --- 8 | 9 | Here you can find documentation about the EGI DataHub for service providers 10 | -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/add-support-oneprovider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/add-support-oneprovider.png -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/onedata-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/onedata-logo.png -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/onedatify-oneprovider-expose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/onedatify-oneprovider-expose.png -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/onedatify-oneprovider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/onedatify-oneprovider.png -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/onedatify_step_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/onedatify_step_1.png -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/onedatify_step_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/onedatify_step_5.png -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/onedatify_step_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/onedatify_step_6.png -------------------------------------------------------------------------------- /content/en/providers/datahub/oneprovider/storage-import-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/datahub/oneprovider/storage-import-01.png -------------------------------------------------------------------------------- /content/en/providers/high-throughput-compute/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "High-Throughput Compute" 3 | weight: 50 4 | type: "docs" 5 | description: Execute thousands of computational tasks to analyse large datasets 6 | --- 7 | 8 | With High-Throughput Compute you can run computational jobs at scale on the EGI 9 | infrastructure. It allows you to analyse large datasets and execute thousands of 10 | parallel computing tasks. 11 | 12 | High-Throughput Compute is provided by a distributed network of computing 13 | centres, accessible via a standard interface and membership of a virtual 14 | organisation. EGI offers more than 1,000,000 cores of installed capacity, 15 | supporting over 1.6 million computing jobs per day. 16 | 17 | This service supports research and innovation at all scales: from individuals to 18 | large collaborations. 19 | 20 | Main characteristics of the service: 21 | 22 | - Access to high-quality computing resources 23 | - Integrated monitoring and accounting tools to provide information about the 24 | availability and resource consumption 25 | - Workload and data management tools to manage all computational tasks 26 | - Large amounts of processing capacity over long periods of time 27 | - Faster results for your research 28 | - Shared resources among users, enabling collaborative research 29 | 30 | ## Service management 31 | 32 | Miscellaneous collection of documentation related to High-Throughput Compute. 33 | 34 | - [Changing the Site BDII](./changing-site-bdii) 35 | - [How to configure Site and Top BDII](https://twiki.cern.ch/twiki/bin/view/LCG/BDIIconfigYAIMel9) (external page) 36 | - [HTCondor-CE Accounting](./htcondor-ce-accounting) 37 | - [Storage Accounting](./storage-accounting) 38 | -------------------------------------------------------------------------------- /content/en/providers/joining/federated-resource-centre/SLAs-Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/joining/federated-resource-centre/SLAs-Picture.png -------------------------------------------------------------------------------- /content/en/providers/joining/federated-resource-centre/SiteStatusFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/joining/federated-resource-centre/SiteStatusFlow.png -------------------------------------------------------------------------------- /content/en/providers/joining/new-provider/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Joining as a provider for existing EGI services" 3 | weight: 30 4 | description: "Guidelines for new providers for existing EGI services" 5 | type: "docs" 6 | --- 7 | 8 | To become a provider of one of the 9 | [Services for Research](https://www.egi.eu/services/research/) already included 10 | in the EGI Portfolio, you first have to become provider of a 11 | [federated resource centre](../federated-resource-centre). This first step 12 | typically requires you to become either an 13 | [EGI High Throughput Compute (HTC)](../../high-throughput-compute) provider, 14 | by deploying Compute and Storage capabilities, or a Cloud service provider, by 15 | deploying OpenStack and federating it into the 16 | [EGI Cloud Compute](../../cloud-compute) service. 17 | 18 | Once such a foundational role is fulfilled you can configure/deploy the 19 | additional service within your resource centre. 20 | -------------------------------------------------------------------------------- /content/en/providers/joining/new-service/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Introducing a new EGI service" 3 | weight: 50 4 | description: "How new services are added to the EGI service catalogue" 5 | type: "docs" 6 | --- 7 | 8 | The EGI services are contributed by the 9 | [EGI Council members](https://www.egi.eu/egi-federation/#council), who can 10 | propose new services through the 11 | [EGI Service Strategy](https://www.egi.eu/publication/egi-federation-service-strategy-2022-2024/), 12 | that defines the overall direction to EGI services for a few years time window. 13 | The services are designed, validated with the EGI Community, and with the help 14 | of the [EGI Services and Solutions Board (SSB)](https://go.egi.eu/ssb). 15 | 16 | The evolution of the services is driven by 5 Strategic Objectives (SO) which are 17 | based on the knowledge of the user community needs that are being gathered 18 | through research and innovation projects, customer interviews and analysis of 19 | trends. Each defines an area for possible future work, and if approved, can be 20 | developed into more concrete goals and intended results. 21 | 22 | - SO1: Federated compute continuum 23 | - SO2: Federated Data Lakes and repositories 24 | - SO3: Data analytics and scientific tools including AI 25 | - SO4: Professional support and consultancy 26 | - SO5: Investigation of a trusted compute platform for sensitive data processing 27 | 28 | > If you want to propose a new service, you should approach your national EGI 29 | > Council member, or fallback to the [EGI SSB](https://go.egi.eu/ssb). 30 | -------------------------------------------------------------------------------- /content/en/providers/notebooks/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Notebooks" 3 | linkTitle: "Notebooks" 4 | type: docs 5 | description: "Architecture and Operations of EGI Notebooks" 6 | weight: 40 7 | --- 8 | 9 | Here you can find documentation about the internal architecture and operations 10 | of the EGI Notebooks service. 11 | -------------------------------------------------------------------------------- /content/en/providers/notebooks/architecture/egi_notebooks_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/notebooks/architecture/egi_notebooks_architecture.png -------------------------------------------------------------------------------- /content/en/providers/online-storage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Online Storage" 3 | linkTitle: "Online Storage" 4 | type: docs 5 | description: "Documentation for EGI Online Storage Service Providers" 6 | weight: 70 7 | --- 8 | 9 | Here you can find documentation about the EGI Online Storage for service providers. 10 | -------------------------------------------------------------------------------- /content/en/providers/operations-manuals/man05_top_and_site_bdii_high_availability/dnsupdater-igi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/operations-manuals/man05_top_and_site_bdii_high_availability/dnsupdater-igi.png -------------------------------------------------------------------------------- /content/en/providers/operations-manuals/man05_top_and_site_bdii_high_availability/nsupdater-ibergrid-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/operations-manuals/man05_top_and_site_bdii_high_availability/nsupdater-ibergrid-2.png -------------------------------------------------------------------------------- /content/en/providers/operations-manuals/man05_top_and_site_bdii_high_availability/nsupdater-ibergrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/providers/operations-manuals/man05_top_and_site_bdii_high_availability/nsupdater-ibergrid.png -------------------------------------------------------------------------------- /content/en/providers/rod/security/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Dealing with security incidents" 3 | weight: 40 4 | type: docs 5 | description: >- 6 | Information about procedures to deal with security incidents. 7 | --- 8 | 9 | ## Some procedures to deal with security events 10 | 11 | Sites facing or suspecting a security incident on their resources have to follow 12 | [Incident Handling Procedure](https://confluence.egi.eu/display/EGIBG/CSIRT+Incident+reporting) 13 | 14 | New vulnerability issues of the middleware should be handled as defined in the 15 | [related procedure](https://documents.egi.eu/public/ShowDocument?docid=3145) 16 | with a guide what to do when [you find a vulnerability](https://go.egi.eu/svg). 17 | 18 | Sites having critical vulnerabilities are handled according to 19 | [SEC03 EGI-CSIRT Critical Vulnerability Handling Procedure](https://go.egi.eu/sec03), 20 | and if they do not respond properly, they may face suspension. 21 | -------------------------------------------------------------------------------- /content/en/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search Results 3 | layout: search 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /content/en/support/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Support" 3 | description: "Support for EGI services" 4 | type: docs 5 | menu: 6 | main: 7 | weight: 40 8 | pre: 9 | --- 10 | 11 | Support for EGI services is available through the 12 | [EGI Helpdesk](https://helpdesk.egi.eu/). To get started 13 | with the EGI Helpdesk check out the 14 | [documentation](../internal/helpdesk/access-and-roles/). 15 | 16 | Every ticket in the Helpdesk is assigned to a **Support Unit**. 17 | If you are unsure about what Support Unit to choose, the 18 | ticket will be assigned to the default, first-level *TPM* 19 | Support Unit (*Ticket Processing Manager*). Then TPM will 20 | reassign the ticket to the relevant, second-level Support Unit. 21 | To accelerate response time and obtain a quick assistance, 22 | we recommend selecting the *User Community Support* Unit 23 | when you submit your ticket. For that, please search for 24 | User Community Support in the *Group* box as show in the 25 | image below: 26 | 27 | ![GGUS Group](ggus-group.png "User Community Support") 28 | 29 | {{% alert title="Note" color="info" %}} Support is also available by contacting 30 | us at `support` `` `egi.eu`. 31 | {{% /alert %}} 32 | -------------------------------------------------------------------------------- /content/en/support/ggus-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/support/ggus-group.png -------------------------------------------------------------------------------- /content/en/users/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "User Guides" 3 | linkTitle: "For Users" 4 | description: "Documentation for public EGI services" 5 | weight: 10 6 | type: "docs" 7 | menu: 8 | main: 9 | weight: 10 10 | pre: 11 | --- 12 | 13 | This section offers an [introduction](getting-started) to the 14 | [EGI services](https://www.egi.eu/services/), together with 15 | [tutorials](tutorials) about how to set up, use, and combine these services. 16 | 17 | {{% alert title="Note" color="info" %}} See the 18 | [Service Providers](../providers) section for details on how to integrate 19 | providers into the EGI Federation. {{% /alert %}} 20 | 21 | ## Request for information 22 | 23 | You can ask for more information about the public EGI services 24 | [on our site](https://www.egi.eu/contact-us). 25 | -------------------------------------------------------------------------------- /content/en/users/aai/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Authentication & Authorization 3 | linkTitle: Authentication & Authorization 4 | type: docs 5 | weight: 30 6 | description: > 7 | Identity and access management in the EGI Cloud 8 | --- 9 | 10 | ## Working with federated resources 11 | 12 | [EGI is a federation](https://www.egi.eu/egi-federation/) of compute and storage 13 | resource providers. 14 | 15 | In order for the providers to be able to 16 | [contribute their services](../../providers/check-in) to the federation and to 17 | help scientific user communities take advantage of compute and storage solutions 18 | that could potentially span across multiple of these providers, a common 19 | Authentication and Authorisation Infrastructure (AAI) is needed. 20 | -------------------------------------------------------------------------------- /content/en/users/aai/check-in/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: EGI Check-in 3 | linkTitle: Check-in 4 | type: docs 5 | weight: 30 6 | aliases: 7 | - /users/check-in 8 | description: > 9 | Control access to resources in the EGI Infrastructure 10 | --- 11 | 12 | ## What is it? 13 | 14 | [EGI Check-in](https://www.egi.eu/service/check-in/) is a proxy service that 15 | **allows scientific communities to securely access and control access to 16 | resources in the EGI Federated infrastructure**. It operates as a central hub 17 | that connects federated [Identity Providers](../../../providers/check-in/idp) (IdPs) 18 | with EGI service providers. 19 | 20 | Users can authenticate with their preferred IdP 21 | (e.g an [eduGAIN](https://edugain.org) account, institutional account, 22 | social media account, etc.) to access and use EGI services in a uniform 23 | and easy way. 24 | 25 | The main features of Check-in: 26 | 27 | - Enables multiple federated authentication sources using different technologies 28 | - Has an user registration portal that also allows linking accounts 29 | - Increases productivity and security by simplifying user authentication and authorization 30 | - Federated in [eduGAIN](https://edugain.org) as a service provider 31 | - Combines user attributes originating from various authoritative sources 32 | (IdPs and attribute provider services) and delivers them to EGI service 33 | providers in a transparent way 34 | 35 | {{% alert title="Note" color="info" %}} EGI Check-In is based on 36 | the [AARC Blueprint Architecture](https://aarc-project.eu/architecture/). 37 | {{% /alert %}} 38 | 39 | The following sections cover how to sign up for and EGI account, and how to 40 | use it to access resources. 41 | -------------------------------------------------------------------------------- /content/en/users/aai/check-in/faq/check-in-discovery-igft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/faq/check-in-discovery-igft.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/faq/check-in-support-unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/faq/check-in-support-unit.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/joining-virtual-organisation/check-in-join-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/joining-virtual-organisation/check-in-join-example.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petition-approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petition-approval.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petition-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petition-confirmation.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petition-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petition-created.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/joining-virtual-organisation/check-in-pending-petitions.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/joining-virtual-organisation/check-in-people-enroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/joining-virtual-organisation/check-in-people-enroll.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/joining-virtual-organisation/check-in-start-enroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/joining-virtual-organisation/check-in-start-enroll.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-certificates-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-certificates-preview.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-discovery-igft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-discovery-igft.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-link-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-link-end.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-link-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-link-intro.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-link-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-link-new.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-list-organisational-ids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-list-organisational-ids.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-my-identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-my-identity.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/linking/check-in-select-certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/linking/check-in-select-certificate.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/obtaining-tokens/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Obtaining Access/Refresh Tokens 3 | linkTitle: Obtaining Tokens 4 | type: docs 5 | weight: 30 6 | aliases: 7 | - /users/aai/check-in/obtaining-tokens 8 | description: > 9 | Obtaining Access/Refresh Tokens from Check-in 10 | --- 11 | 12 | ## Overview 13 | 14 | This page includes all the available ways to obtain OAuth tokens from EGI 15 | Check-in. 16 | -------------------------------------------------------------------------------- /content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-access-token-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-access-token-2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-access-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-access-token.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-login.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-refresh-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/obtaining-tokens/token-portal/check-in-token-refresh-token.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/check-in-idp-discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/check-in-idp-discovery.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/check-in-profile-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/check-in-profile-basic.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/check-in-profile-linked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/check-in-profile-linked.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/check-in-profile-vos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/check-in-profile-vos.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/check-in-sign-up-attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/check-in-sign-up-attributes.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/check-in-sign-up-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/check-in-sign-up-intro.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/check-in-tou-agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/check-in-tou-agreement.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/signup/egi-aup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/signup/egi-aup.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/OP_VO_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/OP_VO_details.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/OP_VO_enrolment_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/OP_VO_enrolment_url.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/VOs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/VOs.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/authorisation/checkin_flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/authorisation/checkin_flow.jpg -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/authorisation/entitlements.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/authorisation/entitlements.jpg -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/OP_VO_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/OP_VO_details.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/OP_VO_enrolment_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/OP_VO_enrolment_url.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/admins/admin_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/admins/admin_add.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/admins/admin_add_email1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/admins/admin_add_email1.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/admins/admin_add_email2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/admins/admin_add_email2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/admins/admin_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/admins/admin_delete.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/admins/admin_direct_indirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/admins/admin_direct_indirect.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/admins/admin_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/admins/admin_menu.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/admins/admins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/admins/admins.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/general_groups-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/general_groups-01.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/general_groups-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/general_groups-02.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/general_groups-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/general_groups-03.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/general_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/general_groups.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/groups/group_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/groups/group_details.jpg -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/groups/menu_groupmanagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/groups/menu_groupmanagement.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/groups/subgroup_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/groups/subgroup_create.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/groups/subgroup_create2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/groups/subgroup_create2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/groups/subgroup_create_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/groups/subgroup_create_detail.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/groups/subgroup_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/groups/subgroup_delete.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/groups/subgroup_delete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/groups/subgroup_delete2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/Membership_states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/Membership_states.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_access.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_comments.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_copyURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_copyURL.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_copyURL2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_copyURL2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_create1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_create1.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_create2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_create2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_default.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_delete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_delete2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_future_membership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_future_membership.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_list.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_list_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_list_default.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_membership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_membership.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_membership_365warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_membership_365warning.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_membership_indefinite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_membership_indefinite.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_menu.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_request_approve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_request_approve.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_run.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_select_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_select_visible.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/enrolment_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/enrolment_status.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/expiration_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/expiration_extension.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/expiration_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/expiration_warning.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/general_groups-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/general_groups-04.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_add.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_add0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_add0.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_add2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_add3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_add3.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_delete.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_edit.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_invite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_invite.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_invite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_invite2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_suspend.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/member_suspend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/member_suspend2.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/members_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/members_list.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/membership_effective_expiration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/membership_effective_expiration.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/membership_expiration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/membership_expiration.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/status_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/status_green.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/status_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/status_red.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/members/status_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/members/status_yellow.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/member_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/member_edit.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/role_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/role_create.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/role_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/role_delete.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/roles_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/roles_edit.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/roles_list_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/roles_list_after.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/roles_list_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/roles_list_before.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/roles_member_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/roles_member_edit.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/keycloak/roles/roles_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/keycloak/roles/roles_section.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/voms/register_enmr_vo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/voms/register_enmr_vo.png -------------------------------------------------------------------------------- /content/en/users/aai/check-in/vos/voms/vo_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/aai/check-in/vos/voms/vo_registration.png -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/automate/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Automating Deployments 3 | type: docs 4 | weight: 70 5 | description: > 6 | Use Infrastrucure-as-Code in the EGI Cloud 7 | --- 8 | 9 | The [OpenStack](../../../getting-started/openstack) sites in the EGI Cloud that 10 | provide compute resources to run virtual machines (VMs) allow nearly everything 11 | to be done via an Application Programming Interface (API) or a 12 | [command-line interface](../../../getting-started/cli) (CLI). 13 | This means that repetitive tasks or complex architectures can be turned into shell scripts. 14 | 15 | But creating VMs happens so often in the EGI Cloud that tools were developed to 16 | capture the provisioning of these VMs, and allow users to recreate them in a flash, 17 | in a **deterministic** and **repeatable** way, using an Infrastructure-as-Code (IaC) approach. 18 | 19 | Automating this activity will help researchers to: 20 | 21 | - Not forget important configuration (e.g. the size and type of the hardware resources needed). 22 | - Ensure the same steps are performed, in the same order (e.g. making sure the correct 23 | datasets are attached to each VM). 24 | - Easily share scientific pipelines with collaborators. 25 | - Make scientific applications cloud agnostic. 26 | 27 | To automate VM deployment, you can use any of the [cloud orchestrators](../../orchestration) 28 | available in the EGI Cloud. 29 | -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/dynamic-dns/add-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/cloud-compute/dynamic-dns/add-host.png -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/dynamic-dns/dynamic-dns-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/cloud-compute/dynamic-dns/dynamic-dns-portal.png -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/images/appdb_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/cloud-compute/images/appdb_cloud.png -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/monitor/vmops_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/cloud-compute/monitor/vmops_settings.png -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/monitor/vmops_va_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/cloud-compute/monitor/vmops_va_select.png -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/monitor/vmops_vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/cloud-compute/monitor/vmops_vm.png -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/networking/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Virtual Machine Networking 3 | linkTitle: Networking 4 | type: docs 5 | weight: 40 6 | draft: true 7 | description: > 8 | Networking in the EGI Cloud 9 | --- 10 | 11 | ## TODO 12 | -------------------------------------------------------------------------------- /content/en/users/compute/cloud-compute/security/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Virtual Machine Security 3 | linkTitle: Security 4 | type: docs 5 | weight: 50 6 | draft: true 7 | description: > 8 | Security in the EGI Cloud 9 | --- 10 | 11 | ## TODO 12 | -------------------------------------------------------------------------------- /content/en/users/compute/cloud-container-compute/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Cloud Container Compute 3 | type: docs 4 | weight: 20 5 | aliases: 6 | - /users/cloud-container-compute 7 | description: > 8 | Run containers on the EGI Cloud 9 | --- 10 | 11 | The 12 | [EGI Cloud Container Compute service](https://www.egi.eu/service/cloud-container-compute/) 13 | allows you to run container-based applications on the providers of the EGI 14 | Federated Cloud. There are two main ways of executing containers: 15 | 16 | 1. Using docker (or a similar container runtime) on a VM, so you can just 17 | interact directly with the container runtime to run your applications. This 18 | fits simpler applications that can easily fit on one node and are composed by 19 | a small number of containers. 20 | 21 | 1. Using a container orchestration platform, e.g. 22 | [kubernetes](https://kubernetes.io) on a set of VMs to manage the 23 | applications in an automated way for you. This is usually suited for more 24 | complex applications that spawn several nodes and are composed of several 25 | containers that need to cooperate to deliver the expected functionality. 26 | 27 | Follow the guides below to learn more about them. 28 | 29 | The EGI Cloud Container Compute service has been presented in the 30 | [EGI Webinars](https://www.egi.eu/trainings-and-webinars/). 31 | 32 | * January 2024: *Introduction to the new generation EGI container execution 33 | platform*. See 34 | [slides and recording](https://www.egi.eu/event/webinar-introduction-to-the-container-platform/). 35 | 36 | * April 2021: *Managing Singularity, Docker and udocker containers, Kubernetes 37 | clusters in the EGI Cloud*. See 38 | [slides and recording](https://indico.egi.eu/event/5492/). 39 | -------------------------------------------------------------------------------- /content/en/users/compute/high-performance-compute/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "High Performance Compute" 3 | type: docs 4 | weight: 40 5 | draft: true 6 | description: > 7 | EGI High Performance Compute service 8 | --- 9 | 10 | ## What is it? 11 | 12 | High Performance Compute (HPC) is ... 13 | -------------------------------------------------------------------------------- /content/en/users/compute/high-throughput-compute/htc_archtecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/high-throughput-compute/htc_archtecture.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Compute Orchestration 3 | linkTitle: Compute Orchestration 4 | type: docs 5 | weight: 60 6 | description: > 7 | Compute resource orchestration in the EGI infrastructure 8 | --- 9 | 10 | ## Overview 11 | 12 | One of the challenges for researchers in recent years is to manage an ever-increasing 13 | amount of compute and storage services, which then form ever more complex end user 14 | applications or platforms. 15 | 16 | To address this need, EGI provides several orchestrators that facilitate the 17 | management of your workload using resources on the federation. These tools have 18 | different levels of abstractions and features. See below to understand which to 19 | choose (or gets used automatically) in specific scenarios: 20 | 21 | | Service Name | Workload Type | Use-Case | 22 | | ------------------------------------------- | ---------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | 23 | | [Infrastructure Manager](im) | VMs, containers, storage | Used to run workloads on a single IaaS Cloud provider. | 24 | | [Workload Manager](workload-manager) | Jobs | Used to efficiently distribute, manage, and monitor computing workloads. | 25 | 26 | The following sections offer more details about each of these orchestrators. 27 | -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_add_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_add_nodes.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_change_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_change_user.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_configure.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_cred_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_cred_list.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_edit_cred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_edit_cred.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_inf_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_inf_actions.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_inf_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_inf_list.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_inputs.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_login.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_outputs.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_site.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_vm_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_vm_info.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/dashboard/dash_vm_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/dashboard/dash_vm_resize.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Elastic Cloud Compute Clusters 3 | linkTitle: Cloud Compute Clusters 4 | type: docs 5 | weight: 20 6 | aliases: 7 | - /users/cloud-compute/ec3 8 | description: > 9 | Working with Elastic Cloud Compute Clusters in the EGI Cloud 10 | --- 11 | 12 | ## What is it? 13 | 14 | [Elastic Cloud Compute Cluster](https://servproject.i3m.upv.es/ec3-ltos/) (EC3) 15 | is a tool to **create elastic virtual clusters on top of 16 | Infrastructure-as-a-Service (IaaS) providers**. 17 | 18 | Being based on [Infrastructure Manager](../im), EC3 supports the same wide 19 | choices of backends, either public (such as 20 | [Amazon Web Services](https://aws.amazon.com/), 21 | [Google Cloud](https://cloud.google.com/) or 22 | [Microsoft Azure](https://azure.microsoft.com/)) or on-premises (such as 23 | [OpenStack](../../../getting-started/openstack)). EC3 can provision clusters 24 | running [TORQUE](https://github.com/adaptivecomputing/torque), 25 | [SLURM](https://slurm.schedmd.com/), 26 | [HTCondor](https://research.cs.wisc.edu/htcondor/), 27 | [Apache Mesos](https://mesos.apache.org/), [Nomad](https://www.nomadproject.io/), 28 | [Kubernetes](https://kubernetes.io/) and others, which will be automatically 29 | resized to fit the load (e.g. number of jobs at the batch system). 30 | 31 | {{% alert title="Note" color="info" %}} EC3 was presented in one of the 32 | [EGI Webinars](https://www.egi.eu/trainings-and-webinars/). Please see more details on the 33 | [Indico page](https://indico.egi.eu/event/5092/) and check out the video 34 | recording on [YouTube](https://youtu.be/cN0tTBjV3I8). {{% /alert %}} 35 | 36 | The following section of the documentation will guide you on how to: 37 | 38 | - Deploy a simple EC3 elastic cluster on top of the IaaS providers of the EGI 39 | Cloud, either using the web interface or the command-line interface, and 40 | - Run pre-configured scientific applications in the EC3 elastic cluster. 41 | -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-application-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-application-dashboard.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-container-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-container-1.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-container-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-container-2.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-end.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-endpoint.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-explore.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-front.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-infra-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-infra-io.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-infra-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-infra-server.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-instance.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-jupyter.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-jupyterhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-jupyterhub.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-list.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-lrms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-lrms.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-manage.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-oph_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-oph_term.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-os.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-reduce.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-size.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-space.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/ecas-summary.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/apps/ecas/grafana-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/apps/ecas/grafana-login.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/developers/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Instructions for Developers 3 | type: docs 4 | weight: 30 5 | aliases: 6 | - /users/cloud-compute/ec3/developers 7 | description: > 8 | How to integrate a new application in EC3 9 | --- 10 | 11 | This section documents how to integrate a new application in EC3. 12 | 13 | ## About 14 | 15 | The process to integrate a new application in EC3 is described by the 16 | following process: 17 | 18 | * Describe the application to be integrated with Ansible, the open-source 19 | automation engine that automates software provisioning, configuration 20 | management, and application deployment. 21 | * Use the Ansible receipt to create a new RADL template 22 | 23 | ### Documentations 24 | 25 | * [Ansible documentation](https://docs.ansible.com/) 26 | * [EC3 documentation](https://ec3.readthedocs.io/en/devel/templates.html) 27 | * [RADL](https://github.com/grycap/ec3/tree/master/templates) 28 | 29 | {{% alert title="Note" color="info" %}} For more information please contact 30 | 31 | * Miguel Caballer: `micafer1 upv.es` 32 | * Amanda Calatrava: `amcaar i3m.upv.es` 33 | 34 | {{% /alert %}} 35 | -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/portal/ec3-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/portal/ec3-endpoint.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/portal/ec3-lrms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/portal/ec3-lrms.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/portal/ec3-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/portal/ec3-nodes.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/portal/ec3-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/portal/ec3-portal.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/im/ec3/portal/ec3-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/im/ec3/portal/ec3-size.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/workload-manager/dirac_web_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/workload-manager/dirac_web_portal.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/workload-manager/egi_workload_manager_web_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/workload-manager/egi_workload_manager_web_portal.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/workload-manager/job_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/workload-manager/job_monitor.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/workload-manager/job_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/workload-manager/job_submit.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/workload-manager/proxy_cert_upload_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/workload-manager/proxy_cert_upload_1.png -------------------------------------------------------------------------------- /content/en/users/compute/orchestration/workload-manager/proxy_cert_upload_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/compute/orchestration/workload-manager/proxy_cert_upload_2.png -------------------------------------------------------------------------------- /content/en/users/data/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Data Services 3 | linkTitle: Data 4 | type: docs 5 | weight: 40 6 | description: > 7 | Data services in the EGI Cloud 8 | --- 9 | 10 | ## Working with data 11 | 12 | One of the main daily activities of researchers is to collect or create data 13 | that needs to be processed, analyzed, or shared. The EGI offering in this area 14 | is quite vast and includes both low level 15 | [storage services](./storage/) and 16 | [data management](./management/) frameworks, as well as specialized 17 | [data transfer](./management/data-transfer/) services. 18 | 19 | Explore the areas below for further details. 20 | -------------------------------------------------------------------------------- /content/en/users/data/management/data-transfer/monitoring/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Monitoring Data Transfer 3 | linkTitle: Monitoring 4 | weight: 40 5 | type: docs 6 | aliases: 7 | - /users/data-transfer/monitoring 8 | description: > 9 | Monitoring file transfers of EGI Data Transfer 10 | --- 11 | 12 | ## Overview 13 | 14 | Each instance of the FTS3 service, offers a Web monitoring interface, that can 15 | be accessed by end users in order to monitor their submitted transfers and 16 | obtain statistics. 17 | 18 | ## Features 19 | 20 | The Web monitoring can be accessed without user authentication, only access to 21 | the transfer log files needs an X.509 user certificate installed on the browser. 22 | 23 | ### Overview page 24 | 25 | The Overview page offers a way to access the information about the transfers 26 | submitted and executed in the last 6 hours. Users can filter transfers per 27 | Virtual Organization, source or destination storage or JobId. 28 | 29 | ![image](ftsmon_overview.png) 30 | 31 | ### Job details page 32 | 33 | By selecting a specific job the information about the job details are displayed. 34 | Each transfer part of the job is listed with his own information. From this page 35 | it's also possible to access the transfer logs (upon authentication). 36 | 37 | ![image](ftsmon_details.png) 38 | 39 | ### Optimizer page 40 | 41 | The Optimizer page shows Optimizer information about a specific link, detailing 42 | the throughput evolution and the parallel transfer/stream per link at a given 43 | time. 44 | 45 | ![image](ftsmon_optimizer.png) 46 | -------------------------------------------------------------------------------- /content/en/users/data/management/data-transfer/monitoring/ftsmon_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/data-transfer/monitoring/ftsmon_details.png -------------------------------------------------------------------------------- /content/en/users/data/management/data-transfer/monitoring/ftsmon_optimizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/data-transfer/monitoring/ftsmon_optimizer.png -------------------------------------------------------------------------------- /content/en/users/data/management/data-transfer/monitoring/ftsmon_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/data-transfer/monitoring/ftsmon_overview.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/api/datahub-space-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/api/datahub-space-permissions.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/clients/datahub-browse-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/clients/datahub-browse-space.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/clients/datahub-connect-check-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/clients/datahub-connect-check-in.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/clients/datahub-space-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/clients/datahub-space-info.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/clients/datahub-space-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/clients/datahub-space-token.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/clients/datahub-welcome-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/clients/datahub-welcome-screen.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/datahub-file-popularity-smarch-caching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/datahub-file-popularity-smarch-caching.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/datahub-metadata-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/datahub-metadata-management.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/datahub-replica-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/datahub-replica-management.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/datahub-space-oneclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/datahub-space-oneclient.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/datahub-space-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/datahub-space-web.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-acl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-acl.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-drag-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-drag-file.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-posix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-posix.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-share-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-share-01.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-share-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-share-02.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-share-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-share-03.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-share-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-share-04.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/file-management/datahub-transfer-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/file-management/datahub-transfer-01.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/links/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: DataHub Links 3 | linkTitle: Links 4 | weight: 50 5 | type: docs 6 | aliases: 7 | - /users/datahub/links 8 | description: > 9 | Links to additional DataHub resources 10 | --- 11 | 12 | - [EGI DataHub service](https://datahub.egi.eu) 13 | - [Overview slides](https://go.egi.eu/datahub-intro) 14 | - [Community Forum](https://community.egi.eu/c/egi-services/datahub) 15 | - [EGI Webinar](https://indico.egi.eu/event/5089/) and 16 | [YouTube video](https://youtu.be/ayAplV2kEN4) 17 | - [System requirements](https://onedata.org/docs/doc/system_requirements.html) 18 | - [Official Onedata documentation](https://onedata.org/#/home/documentation) 19 | - [Onedata homepage](https://onedata.org) 20 | - [Getting started](https://github.com/onedata/getting-started) 21 | - [Source code](https://github.com/onedata) 22 | -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: DataHub Use-Cases 3 | linkTitle: Use-Cases 4 | weight: 10 5 | type: docs 6 | aliases: 7 | - /users/datahub/usecases 8 | description: > 9 | Use-cases for EGI DataHub 10 | --- 11 | 12 | An overview of the use cases and possible deployment scenarios of the 13 | [EGI DataHub](https://datahub.egi.eu/). 14 | 15 | ## Build Data Spaces for Communities 16 | 17 | Users can access with their EGI Check-in credentials data available 18 | at one or more providers which are abstracting over heterogeneous 19 | backends. 20 | 21 | Different data access interfaces are available (Web, REST, POSIX, 22 | CDMI). 23 | 24 | ![image](datahub-federation-of-service-providers.png) 25 | 26 | ## Integrate DataHub with EGI Notebooks 27 | 28 | EGI Notebooks has been integrated with DataHub in order to easily 29 | access and store files from the JupyterLab interface. 30 | 31 | On the central EGI Notebooks instance, a predefined space open to 32 | all users and VO specific spaces are available. 33 | 34 | ![image](datahub-notebooks-integration.png) 35 | 36 | ## Make your data FAIR 37 | 38 | Users can assign metadata to files, create shares and mint DOIs. 39 | 40 | The EGI DataHub offers an OAI-PMH interface which enables standard 41 | discoverability and access to datasets. 42 | 43 | ![image](datahub-publication-of-datasets.png) 44 | 45 | ## Smart caching 46 | 47 | - Site A hosts data and computing resources 48 | - Site B hosts only data 49 | - Site X uses data from A and B without pre-staging 50 | - Pre-staging can also be done using APIs 51 | - Data is accessed locally via POSIX with FUSE 52 | 53 | ![image](datahub-smart-caching.png) 54 | -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/datahub-federation-of-service-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/usecases/datahub-federation-of-service-providers.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/datahub-notebooks-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/usecases/datahub-notebooks-integration.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/datahub-publication-of-datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/usecases/datahub-publication-of-datasets.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/datahub-smart-caching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/usecases/datahub-smart-caching.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/datahub-transparent-data-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/usecases/datahub-transparent-data-access.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/docker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/usecases/docker-logo.png -------------------------------------------------------------------------------- /content/en/users/data/management/datahub/usecases/onedata-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/data/management/datahub/usecases/onedata-logo.png -------------------------------------------------------------------------------- /content/en/users/dev-env/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Development Environments 3 | linkTitle: Development Environments 4 | type: docs 5 | weight: 80 6 | description: > 7 | Interactive environments for scientific development in the EGI Cloud 8 | --- 9 | 10 | ## Overview 11 | 12 | Achieving the core objective of the 13 | [EGI Federation](https://www.egi.eu/egi-federation/) to advance research and 14 | innovation, embracing 15 | [Open Science](https://en.wikipedia.org/wiki/Open_science), is possible by 16 | empowering scientists and researchers to perform domain-specific research tasks, 17 | without having to deal with the complexities of the underlying infrastructure. 18 | 19 | An essential tool that contributes to this objective is a flexible development 20 | environment, where users can create and share documents containing live code, 21 | equations, narrative text, and rich media output. 22 | 23 | The following development environments are available: 24 | 25 | - [Notebooks](./notebooks) is a browser-based, scalable tool for interactive 26 | data analysis. 27 | - [Replay](./replay) allows re-creation of custom computing environments for 28 | reproducible execution of notebooks. 29 | 30 | Their dedicated sections offer a detailed description of each development 31 | environment. 32 | -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/data/datahub-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/data/datahub-folder.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/data/notebooks-b2drop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/data/notebooks-b2drop-1.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/data/notebooks-b2drop-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/data/notebooks-b2drop-2.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/data/notebooks-b2drop-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/data/notebooks-b2drop-3.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/faq/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Frequently Asked Questions 3 | linkTitle: FAQ 4 | weight: 40 5 | type: docs 6 | aliases: 7 | - /users/notebooks/faq 8 | description: > 9 | Most frequent questions asked about EGI Notebooks 10 | --- 11 | 12 | ## How do I install library _X_? 13 | 14 | You can install new software easily on the notebooks using `conda` or `pip`. The 15 | `%conda` and `%pip` 16 | [magics](https://ipython.readthedocs.io/en/stable/interactive/magics.html#magic-conda) 17 | can be used in a cell of your notebooks to do so, e.g. installing `rdkit`: 18 | 19 | ```{.pycon} 20 | %conda install rdkit 21 | ``` 22 | 23 | Once installed you can import the library as usual. 24 | 25 | {{% alert title="Warning" color="warning" %}} Any modifications to the 26 | libraries/software of your notebooks will be lost when your notebook server is 27 | stopped (automatically after 1 hour of inactivity)! {{% /alert %}} 28 | 29 | ## Can I request library _X_ to be installed permanently? 30 | 31 | Yes! Just let us know what are your needs. You can contact us via: 32 | 33 | - Opening a ticket in the [EGI Helpdesk](https://ggus.eu), or 34 | - Creating a [GitHub Issue](https://github.com/EGI-Federation/notebooks/issues) 35 | 36 | We will analyse your request and get back to you. 37 | -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Notebooks Environments 3 | linkTitle: Environments 4 | weight: 5 5 | type: docs 6 | aliases: 7 | - /users/notebooks/kernel 8 | description: > 9 | Runtime environments available in EGI Notebooks 10 | --- 11 | 12 | JupyterHub is an extensible platform that supports different combination of 13 | software and hardware for running your applications. For the EGI service, you 14 | have the choice to run: 15 | 16 | - the [default environment](./default) that provides a data-science ready stack 17 | with support for Python, R, Julia, and Octave. 18 | - the [MATLAB environment](./matlab), for running MATLAB. 19 | 20 | After logging into the service, you will be shown a form for selecting the 21 | environment, pick the desired one and click start 22 | 23 | ![environmet selection](notebooks-environments.png) 24 | 25 | The list of options is customised for your community, depending on the VOs you 26 | are member of, you will be able to select new options tuned to your needs, e.g. 27 | [eiscat.se VO](https://operations-portal.egi.eu/vo/view/voname/eiscat.se) 28 | members are presented with a runtime environment built matching their needs: 29 | 30 | ![eiscat environment](eiscat-env.png) 31 | 32 | If you have special needs that cannot be covered with the 33 | [default environment](./default) environment, let us know by opening a ticket to 34 | the Notebooks Support Unit in [GGUS](https://ggus.eu). 35 | 36 | Additionally, you can build your own environment via [Replay](../../replay). 37 | This will allow you to build reproducible and shareable environments for your 38 | notebooks. 39 | -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/default/notebooks-custom-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/default/notebooks-custom-env.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/eiscat-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/eiscat-env.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/matlab/matlab-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/matlab/matlab-icon.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/matlab/matlab-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/matlab/matlab-ide.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/matlab/matlab-network-license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/matlab/matlab-network-license.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/matlab/matlab-online-license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/matlab/matlab-online-license.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/matlab/matlab-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/matlab/matlab-session.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/matlab/matlab-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/matlab/matlab-status.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/kernels/notebooks-environments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/kernels/notebooks-environments.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/quickstart/lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/quickstart/lab.png -------------------------------------------------------------------------------- /content/en/users/dev-env/notebooks/quickstart/notebooks-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/notebooks/quickstart/notebooks-front.png -------------------------------------------------------------------------------- /content/en/users/dev-env/replay/binder-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/replay/binder-link.png -------------------------------------------------------------------------------- /content/en/users/dev-env/replay/launch-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/replay/launch-error.png -------------------------------------------------------------------------------- /content/en/users/dev-env/replay/replay-hub-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/replay/replay-hub-home.png -------------------------------------------------------------------------------- /content/en/users/dev-env/replay/reproduce-flow-binder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/dev-env/replay/reproduce-flow-binder.png -------------------------------------------------------------------------------- /content/en/users/getting-started/communities/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Community Specific Documentation 3 | linkTitle: Communities 4 | type: docs 5 | weight: 160 6 | description: > 7 | User documentation for EGI Communities 8 | --- 9 | 10 | In the following sections you can find documentation for communities that are 11 | using EGI services. These will typically cover an introduction of the 12 | scientific or research community, the procedure to gain access to the resources 13 | of the community, and guidelines about how to participate in the community. 14 | -------------------------------------------------------------------------------- /content/en/users/getting-started/openstack/dashboard-login-check-in-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/getting-started/openstack/dashboard-login-check-in-1.png -------------------------------------------------------------------------------- /content/en/users/getting-started/openstack/dashboard-login-check-in-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/getting-started/openstack/dashboard-login-check-in-2.png -------------------------------------------------------------------------------- /content/en/users/getting-started/openstack/dashboard-login-check-in-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/getting-started/openstack/dashboard-login-check-in-3.png -------------------------------------------------------------------------------- /content/en/users/getting-started/openstack/dashboard-login-check-partb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/getting-started/openstack/dashboard-login-check-partb.png -------------------------------------------------------------------------------- /content/en/users/machine-learning/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Machine Learning & Deep Learning 3 | linkTitle: Machine Learning 4 | type: docs 5 | weight: 60 6 | draft: true 7 | description: > 8 | Artificial Intelligence in the EGI Cloud 9 | --- 10 | 11 | ## Overview 12 | 13 | TBD 14 | -------------------------------------------------------------------------------- /content/en/users/security/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Security Services 3 | linkTitle: Security 4 | type: docs 5 | weight: 70 6 | description: > 7 | Security services in the EGI infrastructure 8 | --- 9 | 10 | ## Using cloud services securely 11 | 12 | Security in the EGI Federated infrastructure is the highest priority. 13 | The following services can help you to configure and consume EGI services 14 | while meeting your security and compliance objectives: 15 | 16 | - The [Secrets Store](secrets-store) allows users to securely store credentials 17 | or other sensitive information, instead of putting it as plaintext 18 | into code, configuration files, or environment variables. 19 | 20 | Explore the areas below for further details. 21 | -------------------------------------------------------------------------------- /content/en/users/security/secrets-store/api/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Secrets Store API 3 | linkTitle: API 4 | type: docs 5 | weight: 30 6 | description: > 7 | The programmatic interface of EGI Secrets Store 8 | --- 9 | 10 | [Hashicorp Vault](https://www.vaultproject.io/), the service on which 11 | EGI Secrets Store is based, has a REST API with similar inputs like the 12 | [Vault CLI](../cli#access-via-vault-client). See the 13 | [full documentation](https://www.vaultproject.io/api) for more details. 14 | 15 | {{% alert title="Note" color="info" %}} There is a long list of 16 | [libraries, clients, and tools](https://www.vaultproject.io/api-docs/relatedtools) 17 | for working with Hashicorp Vault.{{% /alert %}} 18 | -------------------------------------------------------------------------------- /content/en/users/security/secrets-store/architecture/sstore-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/security/secrets-store/architecture/sstore-design.png -------------------------------------------------------------------------------- /content/en/users/security/secrets-store/gui/vault-create-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/security/secrets-store/gui/vault-create-secret.png -------------------------------------------------------------------------------- /content/en/users/security/secrets-store/gui/vault-home-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/security/secrets-store/gui/vault-home-directory.png -------------------------------------------------------------------------------- /content/en/users/security/secrets-store/gui/vault-homes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/security/secrets-store/gui/vault-homes.png -------------------------------------------------------------------------------- /content/en/users/security/secrets-store/gui/vault-login-oidc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/security/secrets-store/gui/vault-login-oidc.png -------------------------------------------------------------------------------- /content/en/users/security/secrets-store/gui/vault-main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/security/secrets-store/gui/vault-main-window.png -------------------------------------------------------------------------------- /content/en/users/specific/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Additional User Documentation 3 | linkTitle: Cannot find it? 4 | type: docs 5 | weight: 200 6 | draft: true 7 | description: > 8 | User documentation for specific areas 9 | --- 10 | 11 | The EGI user documentation offers a general introduction to the EGI Federation, 12 | EGI services, and contains guides on accessing and using these services 13 | effectively. 14 | 15 | {{% alert title="Tip" color="info" %}} See the 16 | [providers section](../../providers) for documentation aimed at service 17 | providers.{{% /alert %}} 18 | 19 | Some scientific or research communities, as well as some service providers, 20 | have custom requirements, guidelines, policies, etc. These are documented in 21 | the following sections. 22 | -------------------------------------------------------------------------------- /content/en/users/specific/providers/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Provider Specific Documentation 3 | linkTitle: Provider Specific 4 | type: docs 5 | weight: 100 6 | draft: true 7 | description: > 8 | User documentation that only applies for specific services providers 9 | --- 10 | 11 | Some service providers in the EGI Federation publish documentation about how 12 | to work with their sites. Below is a list: 13 | 14 | - [CESNET-MCC](https://docs.cloud.muni.cz/) 15 | - [IFCA-LCG2](https://confluence.ifca.es/display/IC/Computing+Resources) 16 | - [IN2P3-IRES](https://scigne.fr/en/user-support/online-documentation/) 17 | 18 | This information is handy to deal with the particularities of the services 19 | deployed by a given provider. It usually covers OpenStack deployments, 20 | but may also document other services. 21 | -------------------------------------------------------------------------------- /content/en/users/tutorials/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tutorials & Guides 3 | linkTitle: Tutorials 4 | type: docs 5 | weight: 20 6 | description: > 7 | Tutorials for common uses cases in the EGI infrastructure 8 | --- 9 | 10 | ## Overview 11 | 12 | In this section you can find a series of Tutorials and Guides designed by the 13 | members of the EGI Federation with the goal of providing researchers and 14 | scientists with initial knowledge from which they can perform common tasks 15 | in the EGI federated infrastructure. 16 | 17 | The content is organised according to four different skill levels: 18 | 19 | * [Foundation](foundation/) (or entry level): provides an 20 | overview of the EGI federation and of the EGI services, with highlights 21 | of their typical use cases. 22 | * [Intermediate](intermediate/): provides details on individual 23 | services from the EGI owned service portfolio, as well as services that are 24 | offered by the broader EGI community to complement the EGI services 25 | towards certain types of advanced computing use cases. 26 | * [Advanced](advanced/) (for more expert users): provides a 27 | deep-diving on the advanced services to conduct world-class research 28 | and innovation will be presented. 29 | * [Scientific](scientific/): presents examples of domain-specific 30 | Thematic Services benefiting from the solutions offered by the 31 | EGI Infrastructure. 32 | 33 | ## Do you have a specific training request? 34 | 35 | [Contact us](../../support/) and we will be happy to discuss it with you! 36 | 37 | **Find out more**: 38 | 39 | * Learn more about the 40 | [EGI Webinars & Training Programme](https://www.egi.eu/trainings-and-webinars/) 41 | * or visit the [YouTube channel](https://www.youtube.com/@EGI_eInfra/) 42 | -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ad-hoc tutorials 3 | linkTitle: Ad-hoc 4 | type: docs 5 | weight: 50 6 | aliases: 7 | - /users/tutorials 8 | description: > 9 | Step-by-step tutorials for common tasks in the EGI Infrastructure. 10 | --- 11 | 12 | ## Overview 13 | 14 | The following guides and tutorials show you how to perform common tasks 15 | in the EGI infrastructure. Each of the following sections addresses a 16 | specific use case: it describes how to set up the EGI services needed 17 | for that use case, how to connect or operate them together, and will 18 | walk you step-by-step towards achieving a task or setup that can be 19 | immediately used by researchers and scientists. 20 | -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/data-transfer-grid-storage/VAPOR-VO_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/data-transfer-grid-storage/VAPOR-VO_detail.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/data-transfer-grid-storage/VAPOR-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/data-transfer-grid-storage/VAPOR-home.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/data-transfer-grid-storage/VAPOR-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/data-transfer-grid-storage/VAPOR-storage.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/data-transfer-grid-storage/WebFTS-credential_delegation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/data-transfer-grid-storage/WebFTS-credential_delegation.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/data-transfer-grid-storage/WebFTS-my_jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/data-transfer-grid-storage/WebFTS-my_jobs.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/data-transfer-grid-storage/WebFTS-submit_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/data-transfer-grid-storage/WebFTS-submit_transfer.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/data-transfer-object-storage/CERN-PROD-FTS3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/data-transfer-object-storage/CERN-PROD-FTS3.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/htc-job-submission/argo_issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/htc-job-submission/argo_issues.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/jupyter-datahub-virtual-machine/edit-mount.sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/jupyter-datahub-virtual-machine/edit-mount.sh.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/jupyter-datahub-virtual-machine/no-https-datahub-vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/jupyter-datahub-virtual-machine/no-https-datahub-vm.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/jupyter-datahub-virtual-machine/run-mount.sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/content/en/users/tutorials/adhoc/jupyter-datahub-virtual-machine/run-mount.sh.png -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/notebooks-checkin/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Notebooks with authentication" 3 | linkTitle: "Notebooks with authentication" 4 | type: docs 5 | weight: 70 6 | draft: true 7 | description: > 8 | Use EGI Notebooks to process data that requires authentication and authorization 9 | --- 10 | 11 | TBD 12 | -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/notebooks-gridstorage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Notebooks with grid storage" 3 | linkTitle: "Notebooks with grid storage" 4 | type: docs 5 | weight: 90 6 | draft: true 7 | description: > 8 | Access grid storage from EGI Notebooks 9 | --- 10 | 11 | TBD 12 | -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/notebooks-secure-blockstorage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Notebooks with secure block storage" 3 | linkTitle: "Notebooks with secure block storage" 4 | type: docs 5 | weight: 80 6 | draft: true 7 | description: > 8 | Use EGI Notebooks to process data stored in encrypted block storage 9 | --- 10 | 11 | TBD 12 | -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/vm-blockstorage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Virtual machine with block storage" 3 | linkTitle: "VM with block storage" 4 | type: docs 5 | weight: 20 6 | draft: true 7 | description: > 8 | Mount block storage volumes into a virtual machine 9 | --- 10 | 11 | TBD 12 | -------------------------------------------------------------------------------- /content/en/users/tutorials/adhoc/vm-dyndns/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Virtual machine with dynamic DNS" 3 | linkTitle: "VM with dynamic DNS" 4 | type: docs 5 | weight: 30 6 | draft: true 7 | description: > 8 | Access virtual machine using a human-readable DNS name 9 | --- 10 | 11 | TBD 12 | -------------------------------------------------------------------------------- /content/en/users/tutorials/template/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Template title on page" 3 | linkTitle: "Template title in left-side navbar" 4 | type: docs 5 | weight: 1 6 | draft: true 7 | description: > 8 | Template subtitle on page 9 | --- 10 | 11 | 12 | 13 | 14 | ## Overview 15 | 16 | This tutorial describes how to ... 17 | 18 | ## Prerequisites 19 | 20 | To access services and resources in the [EGI Federated Cloud](../../getting-started), 21 | you will need: 22 | 23 | - An EGI ID (account), you can [sign up here](../../aai/check-in/signup) 24 | - Enrollment into a [Virtual Organisation](../../aai/check-in/vos) (VO) 25 | that has access to the services and resources you need 26 | 27 | Although provisioning, configuration, and access to EGI Cloud services is 28 | usually done with a web dashboard/user interface, the examples in this tutorial 29 | will make extensive use the [command-line interface](../../getting-started/cli) 30 | (CLI). 31 | 32 | 33 | 34 | 35 | ## Step 1 36 | 37 | TBD 38 | 39 | ## Step 2 40 | 41 | TBD 42 | -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- 1 | 2 | # UI strings. Buttons and similar. 3 | [ui_search] 4 | other = "Search…" 5 | [on_this_page] 6 | other = "On this page" 7 | 8 | # Post (blog, articles etc.) 9 | [post_last_mod_by] 10 | other = "by" 11 | [post_last_mod_by_suffix] 12 | other = ":" 13 | [no_version_info] 14 | other = "No version information available." 15 | 16 | # Footer text 17 | [footer_all_rights_reserved] 18 | other = "All rights reserved." 19 | -------------------------------------------------------------------------------- /layouts/partials/hooks/head-end.html: -------------------------------------------------------------------------------- 1 | 2 | {{ range .Site.Params.custom_css }} 3 | 4 | {{ end }} 5 | 6 | 7 | {{ range .Site.Params.custom_js }} 8 | 9 | {{ end }} 10 | -------------------------------------------------------------------------------- /layouts/partials/page-meta-lastmod.html: -------------------------------------------------------------------------------- 1 |
2 | {{ if and (.GitInfo) (.Site.Params.github_repo) }} 3 | {{ T "post_last_mod"}} 4 | {{ .Lastmod.Format .Site.Params.time_format_default }} 5 | {{ T "post_last_mod_by"}} 6 | {{ with .GitInfo }} 7 | {{ if .AuthorEmail }} 8 | {{ .AuthorName }} 9 | {{ else }} 10 | {{ .AuthorName }} 11 | {{end}}{{ T "post_last_mod_by_suffix" }} {{ .Subject }} 12 | {{ end }} 13 | {{ else }} 14 | {{ T "no_version_info"}} 15 | {{ end }} 16 |
17 | -------------------------------------------------------------------------------- /layouts/partials/tags.html: -------------------------------------------------------------------------------- 1 | {{ if .Params.tags }} 2 |
3 | {{range .Params.tags}} 4 | {{ . }} 5 | {{end}} 6 |
7 | {{end}} 8 | -------------------------------------------------------------------------------- /layouts/partials/toc.html: -------------------------------------------------------------------------------- 1 | {{ if not .Params.notoc }} 2 | {{ with .TableOfContents }} 3 | {{ if ge (len .) 50 }} 4 |
5 |

{{ T "on_this_page" }}

6 |
7 | {{ . }} 8 |
9 | {{ end }} 10 | {{ end }} 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /layouts/shortcodes/blocks/feature.html: -------------------------------------------------------------------------------- 1 | {{ $icon := .Get "icon" | default "fa-lightbulb" }} 2 | {{ $url := .Get "url" }} 3 | {{ $url_text := .Get "url_text" }} 4 | 5 |
6 | 7 |
8 |
9 | {{ .Get "title" | markdownify }} 10 |
11 |

12 | {{ .Inner | markdownify }} 13 |

14 |
15 | -------------------------------------------------------------------------------- /layouts/shortcodes/blocks/landing.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | {{ $blockID := printf "td-cover-block-%d" .Ordinal }} 3 | {{ $logo_image := (.Page.Resources.ByType "image").GetMatch "**logo*" }} 4 | {{ $col_id := .Get "color" | default "dark" }} 5 | {{ $image_anchor := .Get "image_anchor" | default "smart" }} 6 | {{ $logo_anchor := .Get "logo_anchor" | default "smart" }} 7 | {{/* Height can be one of: auto, min, med, max, full. */}} 8 | {{ $height := .Get "height" | default "max" }} 9 |
10 |
11 |
12 |
13 |
14 | {{ with .Get "title" }}

{{ $title := . }}{{ with $logo_image }}{{ $logo_image_resized := (.Fit (printf "70x70 %s" $logo_anchor)) }}{{ end }}{{ $title | html }}

{{ end }} 15 | {{ with .Get "subtitle" }}

{{ . | html }}

{{ end }} 16 |
17 | {{ if eq .Page.File.Ext "md" }} 18 | {{ .Inner | markdownify }} 19 | {{ else }} 20 | {{ .Inner | htmlUnescape | safeHTML }} 21 | {{ end }} 22 |
23 |
24 |
25 |
26 |
27 |
28 | -------------------------------------------------------------------------------- /layouts/shortcodes/blocks/section.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | {{ $col_id := .Get "color" | default .Ordinal }} 3 | {{ $height := .Get "height" | default "auto" }} 4 | {{ $type := .Get "type" | default "" }} 5 | {{ $oncover := .Get "oncover" | default "false" }} 6 | {{ $ismore := .Get "ismore" | default "false" }} 7 | 8 |
9 |
10 |
11 | {{ if eq .Page.File.Ext "md" }} 12 | {{ .Inner | markdownify }} 13 | {{ else }} 14 | {{ .Inner | htmlUnescape | safeHTML }} 15 | {{ end }} 16 |
17 | {{ if eq $ismore "true" }} 18 |
19 | {{ $id := (printf "td-block-%d" ( add .Ordinal 1 )) }} 20 | {{ $more_color := $.Get "morecolor" | default "blue" }} 21 | 22 |
23 | {{ end }} 24 |
25 |
26 | -------------------------------------------------------------------------------- /layouts/shortcodes/page-info.html: -------------------------------------------------------------------------------- 1 | Page: {{ $.Page.Title }}
2 | Site: {{ $.Page.Site.Title }}
3 | Kind: {{ $.Page.Kind }}
4 | IsSection: {{ $.Page.IsSection }}
5 | IsNode: {{ $.Page.IsNode }}
6 | 7 | {{ with $.Page.Resources.ByType "image" }} 8 | {{ range . }} 9 | {{ .RelPermalink }} 10 | {{ end }} 11 | {{ end }} 12 | -------------------------------------------------------------------------------- /layouts/shortcodes/tabpanex.html: -------------------------------------------------------------------------------- 1 | 2 | {{ .Inner }} 3 | 4 | 18 | 19 | 20 |
21 | {{ range $index, $element := $.Scratch.Get "tabs" }} 22 | 23 | {{ $tabid := printf "tabs-%v-%v-tab" $.Ordinal $index | anchorize }} 24 | {{ $entryid := printf "tabs-%v-%v" $.Ordinal $index | anchorize }} 25 |
27 | {{ .content | markdownify }} 28 |
29 | {{ end }} 30 |
31 | -------------------------------------------------------------------------------- /layouts/shortcodes/tabx.html: -------------------------------------------------------------------------------- 1 | 2 | {{ with $.Parent }} 3 | {{ if ne $.Parent.Name "tabpanex" }} 4 | {{ errorf "tabx must be used within a tabpanex block" }} 5 | {{ end }} 6 | {{ end }} 7 | 8 | 9 | {{ $header := default (printf "Tab %v" ( add $.Ordinal 1)) (.Get "header") }} 10 | 11 | 12 | {{ $tab := dict "header" $header }} 13 | {{ with $.Inner }} 14 | {{ $tab = merge $tab (dict "content" $.Inner) }} 15 | {{ end }} 16 | 17 | 18 | {{ with .Parent }} 19 | {{ $.Parent.Scratch.SetInMap "tabs" (printf "%v" $.Ordinal) $tab }} 20 | {{ end }} 21 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "egi-documentation", 3 | "dependencies": { 4 | "@umbrelladocs/linkspector": "^0.3.8", 5 | "autoprefixer": "^9.0", 6 | "it": "^1.1.1", 7 | "postcss-cli": "^7.1.2" 8 | }, 9 | "standard": { 10 | "ignore": [ 11 | "/static/js/prism.js" 12 | ] 13 | }, 14 | "devDependencies": { 15 | "prettier": "^3.2", 16 | "prettier-plugin-go-template": "^0.0.15" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /public/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/public/.gitkeep -------------------------------------------------------------------------------- /static/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | > This project is only used to host the generated documentation and is not 3 | > meant to receive Pull Requests. 4 | > 5 | > In case you would like to open an issue or Pull Request please do it in the 6 | > [EGI-Foundation/documentation](https://github.com/EGI-Foundation/documentation) 7 | > repository. 8 | -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- 1 | # EGI Documentation 2 | 3 | > This project is only used to host the generated documentation and is not 4 | > meant to receive Pull Requests. 5 | > 6 | > In case you would like to open an issue or Pull Request please do it in the 7 | > [EGI-Federation/documentation](https://github.com/EGI-Federation/documentation) 8 | > repository. 9 | -------------------------------------------------------------------------------- /static/css/shortcodes/tabbed-panex.css: -------------------------------------------------------------------------------- 1 | .tabx-content { 2 | padding: 0.5rem; 3 | border-left: 1px solid #dee2e6; 4 | border-right: 1px solid #dee2e6; 5 | border-bottom: 1px solid #dee2e6; 6 | border-bottom-left-radius: 0.25rem; 7 | border-bottom-right-radius: 0.25rem; 8 | margin-bottom: 1rem; 9 | } 10 | 11 | .tabx-content .tab-pane { 12 | display: none; 13 | } 14 | 15 | .tabx-content .active { 16 | display: block; 17 | } 18 | -------------------------------------------------------------------------------- /static/css/tags.css: -------------------------------------------------------------------------------- 1 | /* Tags */ 2 | 3 | #head-tags { 4 | margin-left: 1em; 5 | margin-top: 1em; 6 | } 7 | 8 | body .tags a.tag-link { 9 | display: inline-block; 10 | line-height: 2em; 11 | font-size: 0.8em; 12 | position: relative; 13 | margin: 0 16px 8px 0; 14 | padding: 0 10px 0 12px; 15 | background: #8451a1; 16 | -webkit-border-bottom-right-radius: 3px; 17 | border-bottom-right-radius: 3px; 18 | -webkit-border-top-right-radius: 3px; 19 | border-top-right-radius: 3px; 20 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); 21 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); 22 | color: #fff; 23 | } 24 | 25 | body .tags a.tag-link::before { 26 | content: ""; 27 | position: absolute; 28 | top: 0; 29 | left: -1em; 30 | width: 0; 31 | height: 0; 32 | border-color: transparent #8451a1 transparent transparent; 33 | border-style: solid; 34 | border-width: 1em 1em 1em 0; 35 | } 36 | 37 | body .tags a.tag-link::after { 38 | content: ""; 39 | position: absolute; 40 | top: 10px; 41 | left: 1px; 42 | width: 5px; 43 | height: 5px; 44 | -webkit-border-radius: 50%; 45 | border-radius: 100%; 46 | background: #fff; 47 | } 48 | -------------------------------------------------------------------------------- /static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/static/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/static/favicons/favicon.ico -------------------------------------------------------------------------------- /static/favicons/site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /static/images/egi-logo-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EGI-Federation/documentation/0d961fa95c283702c94ebdc76c2824a074f10a7b/static/images/egi-logo-300x300.png --------------------------------------------------------------------------------