Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Found via `codespell .`
  • Loading branch information
kianmeng committed Aug 31, 2022
1 parent 300759d commit c9c598b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Gefyra
Gefyra gives Kubernetes-("cloud-native")-developers a completely new way of writing and testing their applications.
Gone are the times of custom Docker-compose setups, Vagrants, custom scrips or other scenarios in order to develop (micro-)services
Gone are the times of custom Docker-compose setups, Vagrants, custom scripts or other scenarios in order to develop (micro-)services
for Kubernetes.

# Gefyra Client
Expand Down
2 changes: 1 addition & 1 deletion operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ During the startup, Operator runs the following:
client)
4) create a headless service for Carriers to connect
6) wait for Stowaway to become ready
7) extract ad-hoc generated connection details (secrets, IP range, ect.) from Stowaway and create a well-known secret
7) extract ad-hoc generated connection details (secrets, IP range, etc.) from Stowaway and create a well-known secret
(for Gefyra to process)
8) register _InterceptionRequest_ custom resource definition, clusterroles and bindings

Expand Down
2 changes: 1 addition & 1 deletion operator/gefyra/stowaway.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def check_stowaway_ready(stowaway_deployment: k8s.client.V1Deployment):
dep = app.read_namespaced_deployment(
name=stowaway_deployment.metadata.name, namespace=configuration.NAMESPACE
)
# reached this in an error case a) timout (build took too long) or b) build could not be successfully executed
# reached this in an error case a) timeout (build took too long) or b) build could not be successfully executed
logger.error("Stowaway error: Stowaway did not become ready")
return False

Expand Down
2 changes: 1 addition & 1 deletion stowaway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ RUN set -x \
" \
&& case "$dpkgArch" in \
amd64|arm64) \
# arches officialy built by upstream
# arches officially built by upstream
echo "deb https://nginx.org/packages/ubuntu/ bionic nginx" >> /etc/apt/sources.list.d/nginx.list \
&& apt-get update \
;; \
Expand Down

0 comments on commit c9c598b

Please sign in to comment.