Skip to content

Commit

Permalink
fix(app): update text content through out app
Browse files Browse the repository at this point in the history
  • Loading branch information
sahil143 authored and rohitkrai03 committed Apr 29, 2024
1 parent f2569a9 commit e9f7261
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const AppWorkflowSection: React.FC<React.PropsWithChildren<AppWorkflowSectionPro
<FlexItem>
<Text component={TextVariants.p}>
This is a visualization of your application pipeline, from source code through
test to deployments.
release.
</Text>
</FlexItem>
{loaded && errors.length === 0 && (
Expand Down
2 changes: 1 addition & 1 deletion src/components/ApplicationListView/ApplicationListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const ApplicationListView: React.FC<React.PropsWithChildren<unknown>> = () => {
<PageLayout
breadcrumbs={applicationBreadcrumbs}
title="Applications"
description="An application is one or more components that run together on environments."
description="An application is 1 or more components running together for building and releasing."
>
<PageSection
padding={{ default: 'noPadding' }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const ComponentActivityTab: React.FC<React.PropsWithChildren<ComponentAct
<div>
<DetailsSection
title="Activity"
description="Monitor CI/CD activity for this component. Each item in the list represents a process that started by a user, generated a snapshot and deployed."
description="Monitor CI/CD activity for this component. Each item in the list represents a process that was started by a user, generated a snapshot, and released."
>
<Tabs
style={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const IntegrationTestSection: React.FC<React.PropsWithChildren<Props>> = ({ isIn
name="integrationTest.optional"
aria-label="Mark as optional for release"
label="Mark as optional for release"
helpText="Passing this test is optional, and it cannot prevent the application from being deployed or released."
helpText="Passing this test is optional and cannot prevent the application from being released."
data-test="optional-release-checkbox"
/>
</FormSection>
Expand Down
8 changes: 3 additions & 5 deletions src/components/Overview/AboutSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const AboutSection: React.FC<React.PropsWithChildren<unknown>> = () => (
<CardBody>
Create applications from your git repository or our bundled samples. Your applications
will be automatically built then containerized with Red Hat’s secure runtime images
and deployed into a cloud hosted development environment with OpenShift.
and released with OpenShift.
</CardBody>
</Card>
<Card isPlain isCompact>
Expand All @@ -72,10 +72,8 @@ const AboutSection: React.FC<React.PropsWithChildren<unknown>> = () => (
<Card isPlain isCompact>
<CardTitle>Become Continuous</CardTitle>
<CardBody>
You can run your containerized applications in the bundled, shared Kubernetes-based
environments that are powered by Red Hat OpenShift. You can share the routes created
for your services and you can continuously build, test, and rollout your applications
with a simple `git push` or acceptance of a pull request.
You can continuously build, test, and rollout your containerized applications with a
simple ‘git push’ or appearance of a pull request.
</CardBody>
</Card>
</CardBody>
Expand Down
5 changes: 2 additions & 3 deletions src/components/Overview/IntroBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,8 @@ const IntroBanner: React.FC<React.PropsWithChildren<unknown>> = () => {
</CardTitle>
<CardBody>
<Text>
Import, containerize, and deploy to a development environment. With just a few clicks,
you can interact with your application running in OpenShift and Kubernetes. Build
here, go anywhere.
Import, containerize, and release. With just a few clicks, you can interact with your
application running in OpenShift and Kubernetes. Build here, go anywhere.
</Text>
</CardBody>
<CardBody>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Secrets/SecretsForm/AddSecretForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const AddSecretForm = () => {
title="Add secret"
description={
<>
Add a new secret to use with any of your environments.
Add a secret that will be stored using AWS Secret Manager to keep your data private.
<HelpTopicLink topicId={'rhtap-secrets-secrets'}>
Learn more <OpenDrawerRightIcon />
</HelpTopicLink>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/SecretsListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const SecretsListPage: React.FC<React.PropsWithChildren<unknown>> = () => {
title="Secrets"
description={
<>
Manage your build and deployment secrets and their related configurations. You can add
a secret at the workspace level.
Manage your secrets and their related configurations. You can add a secret at the
workspace level.
<br /> All secrets are stored using AWS Secrets Manager to keep your data private.
<HelpTopicLink topicId={'rhtap-secrets-secrets'}>
Learn more <OpenDrawerRightIcon />
Expand Down
2 changes: 1 addition & 1 deletion src/utils/pipeline-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { GitOpsDeploymentHealthStatus } from '../types/gitops-deployment';

export const COMPONENT_DESC =
'A component is an image built from code in a source repository. Applications are sets of components that run together on environments.';
export const BUILD_DESC = `Every component requires a build to deploy to an environment. If you choose to use a default pipeline, we'll automatically trigger a single build. Subsequent builds will need to be manually requested. If you choose to customize your build pipeline, you'll walk through a few steps to opt in, including merging a pull request with the default pipeline definition. We'll generate new builds for each merged pull request.`;
export const BUILD_DESC = `Every component requires a build to release. We’ll automatically trigger a single build. Subsequent builds will need to be manually requested.`;
export const TESTS_DESC = `Catch functional regressions from code changes by adding integration tests. Integration tests run in parallel, validating each new component build with the latest version of all other application components.`;
export const STATIC_ENV_DESC = `A static environment is a set of compute resources bundled together. Use static environments for developing, testing, and staging before releasing your application. You can share static environments across all applications within the workspace.`;
export const RELEASE_DESC = `After pushing your application to release, your application goes through a series of tests through the release pipeline to ensure the application complies with the release policy set on the release target, also known as the "managed environment".`;
Expand Down

0 comments on commit e9f7261

Please sign in to comment.