diff --git a/deploy/k8s/README.md b/deploy/k8s/README.md index c34f6d1ba9..3ebc7c2946 100644 --- a/deploy/k8s/README.md +++ b/deploy/k8s/README.md @@ -179,7 +179,7 @@ spec: terminationGracePeriodSeconds: 300 ``` -To gain further security, an archieve node should be used in the same k8s cluster, and a NetworkPolicy be added to limit all network communication within the internal network. +To gain further security, an archive node should be used in the same k8s cluster, and a NetworkPolicy be added to limit all network communication within the internal network. ```yaml apiVersion: networking.k8s.io/v1 kind: NetworkPolicy diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index bb84973a8e..2eb5e24df9 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -183,7 +183,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Publish command output flag not working (#2270) ### Changed -- Update deployemnt flags to match managed service (#2274) +- Update deployment flags to match managed service (#2274) ## [4.2.7] - 2024-02-23 ### Changed diff --git a/packages/cli/src/commands/deployment/index.ts b/packages/cli/src/commands/deployment/index.ts index 5f0def8ad0..a0f0ec876c 100644 --- a/packages/cli/src/commands/deployment/index.ts +++ b/packages/cli/src/commands/deployment/index.ts @@ -32,7 +32,7 @@ export default class Deployment extends Command { if (!option) { userOptions = await select({ - message: 'Select an deployment option', + message: 'Select a deployment option', choices: [{value: 'deploy'}, {value: 'promote'}, {value: 'delete'}], }); } else { diff --git a/packages/cli/src/commands/migrate.test.ts b/packages/cli/src/commands/migrate.test.ts index ecc26b3559..07cd191ada 100644 --- a/packages/cli/src/commands/migrate.test.ts +++ b/packages/cli/src/commands/migrate.test.ts @@ -9,7 +9,7 @@ import {DEFAULT_SUBQL_MANIFEST} from '../constants'; import Migrate from './migrate'; jest.setTimeout(300_000); // 300s -describe('Intergration test - Migrate', () => { +describe('Integration test - Migrate', () => { let projectDir: string; beforeAll(async () => { diff --git a/packages/cli/src/commands/publish.test.ts b/packages/cli/src/commands/publish.test.ts index 5ae70e98ee..f7263994f0 100644 --- a/packages/cli/src/commands/publish.test.ts +++ b/packages/cli/src/commands/publish.test.ts @@ -8,7 +8,7 @@ import {createTestProject} from '../createProject.fixtures'; import Publish from './publish'; jest.setTimeout(300_000); // 300s -describe('Intergration test - Publish', () => { +describe('Integration test - Publish', () => { let projectDir: string; beforeAll(async () => { @@ -43,7 +43,7 @@ describe('Intergration test - Publish', () => { }); // Run this last because it modifies the project - it('file name consistent with manfiest file name, if -f is used', async () => { + it('file name consistent with manifest file name, if -f is used', async () => { const manifestPath = path.resolve(projectDir, 'project.yaml'); const testManifestPath = path.resolve(projectDir, 'test.yaml'); fs.renameSync(manifestPath, testManifestPath);