edsoncelio / diff-glossary-cncf-ptbr

GNU General Public License v3.0
1 stars 1 forks source link

Diff main/dev-pt - 01/04/2022 #14

Closed github-actions[bot] closed 2 years ago

github-actions[bot] commented 2 years ago

Termos atualizados (updated definitions):

upstream/content/en/_index.md
upstream/content/en/api_gateway.md
upstream/content/en/application_programming_interface.md
upstream/content/en/bare_metal_machine.md
upstream/content/en/blue_green_deployment.md
upstream/content/en/canary_deployment.md
upstream/content/en/client_server_architecture.md
upstream/content/en/cloud_native_apps.md
upstream/content/en/cloud_native_security.md
upstream/content/en/cluster.md
upstream/content/en/container-image.md
upstream/content/en/container.md
upstream/content/en/containerization.md
upstream/content/en/continuous_delivery.md
upstream/content/en/continuous_integration.md
upstream/content/en/contribute/_index.md
upstream/content/en/contributor-ladder/_index.md
upstream/content/en/devops.md
upstream/content/en/style-guide/_index.md

Termos novos (new definitions added to the main branch):

upstream/content/en: TLS(Transport
upstream/content/en: _TEMPLATE.md
upstream/content/en: abstraction.md
upstream/content/en: agile_software_development.md
upstream/content/en: auto_scaling.md
upstream/content/en: chaos_engineering.md
upstream/content/en: cloud_computing.md
upstream/content/en: cloud_native_tech.md
upstream/content/en: containers_as_a_service.md
upstream/content/en: data_center.md
upstream/content/en: database_as_a_service.md
upstream/content/en: debugging.md
upstream/content/en: devsecops.md
upstream/content/en: distributed_apps.md
upstream/content/en: distributed_systems.md
upstream/content/en: firewall.md
upstream/content/en: function_as_a_service.md
upstream/content/en: gitops.md
upstream/content/en: horizontal_scaling.md
upstream/content/en: idempotence.md
upstream/content/en: immutable_infrastructure.md
upstream/content/en: infrastructure_as_a_service.md
upstream/content/en: infrastructure_as_code.md
upstream/content/en: kubernetes.md
upstream/content/en: load_balancer.md
upstream/content/en: loosely_coupled_architecture.md
upstream/content/en: mTLS
upstream/content/en: managed_services.md
upstream/content/en: microservices.md
upstream/content/en: monolithic_apps.md
upstream/content/en: nodes.md
upstream/content/en: observability.md
upstream/content/en: platform_as_a_service.md
upstream/content/en: policy_as_code.md
upstream/content/en: portability.md
upstream/content/en: reliability.md
upstream/content/en: scalability.md
upstream/content/en: security_chaos_engineering.md
upstream/content/en: self_healing.md
upstream/content/en: serverless.md
upstream/content/en: service.md
upstream/content/en: service_discovery.md
upstream/content/en: service_mesh.md
upstream/content/en: service_proxy.md
upstream/content/en: shift_left.md
upstream/content/en: site_reliability_engineering.md
upstream/content/en: software_as_a_service.md
upstream/content/en: stateful_apps.md
upstream/content/en: stateless_apps.md
upstream/content/en: tightly_coupled_architectures.md
upstream/content/en: versioncontrol.md
upstream/content/en: vertical_scaling.md
upstream/content/en: virtual_machine.md
upstream/content/en: virtualization.md
upstream/content/en: zero_trust_architecture.md
jihoon-seo commented 2 years ago

@edsoncelio Awesome!

And here is my comment:

upstream/content/en: TLS(Transport actually corresponds to content/en/TLS(Transport Layer Security).md.

It seems that the entire filename was not printed because there exist spaces in filename of English version file,

I followed the commands in workflows/ci.yml: https://github.com/edsoncelio/diff-glossary-cncf-ptbr/blob/7fb22c5be7025336e01c6cc2793b3f1d4ea0d0e5/.github/workflows/ci.yml#L15-L20

And found that updating comment like this solves the problem:

-diff --brief -r upstream/content/en dev-pt/content/pt-br | grep "Only in upstream/content/en" | cut -d" " -f3-4 > new-diff.md
+diff --brief -r upstream/content/en dev-pt/content/pt-br | grep "Only in upstream/content/en" | cut -d" " -f3- > new-diff.md

PTAL!

edsoncelio commented 2 years ago

Thanks @jihoon-seo!