Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contains changes for Local monitoring demo #39

Draft
wants to merge 31 commits into
base: mvp_demo
Choose a base branch
from
Draft
Changes from 7 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
96789ac
Adds Settings and Chart
Jul 28, 2023
a4315b1
adds summary table
Aug 2, 2023
c3c53b8
fixing drawer
Aug 9, 2023
2aa3e5d
Updates README.md
Aug 9, 2023
95a991f
Updates readme
Aug 9, 2023
9679098
npx npm-check-updates -t latest
bhanvimenghani Aug 9, 2023
8fd910d
Updates README.md
bhanvimenghani Aug 10, 2023
357a0d7
fixes font style and changes to 'kruize'
bhanvimenghani Aug 10, 2023
b1c4f27
file clean up
bhanvimenghani Aug 10, 2023
23313c7
Add manifests
bharathappali Jul 14, 2023
592033b
Removed old docker file and updated image name in yamls
bharathappali Aug 11, 2023
3408558
adds copy code
bhanvimenghani Aug 11, 2023
7c6847e
combines all cmds
bhanvimenghani Aug 11, 2023
3b38c78
tag to 0.0.1 and remove unwanted yamls
bharathappali Aug 11, 2023
45d4a37
simplifies language
bhanvimenghani Aug 11, 2023
bd74e52
Update dynamic yaml
bharathappali Aug 11, 2023
b6eed77
Update tag in deploy.sh
bharathappali Aug 11, 2023
ede2860
Merge pull request #32 from bharathappali/add-manifests
dinogun Aug 11, 2023
d47ddeb
Merge pull request #38 from bhanvimenghani/readme-updates
dinogun Aug 11, 2023
abdfa21
fixing conflict
bhanvimenghani Aug 11, 2023
bcbabc6
fixing conflict
bhanvimenghani Aug 11, 2023
cebcb59
Merge branch 'mvp_demo' into minor-fixes
bhanvimenghani Aug 11, 2023
7f3fe20
adds space to resolve conflict
bhanvimenghani Aug 11, 2023
4bd5edb
Merge pull request #40 from bhanvimenghani/minor-fixes
dinogun Aug 11, 2023
8a1bc6c
updates readme
bhanvimenghani Aug 11, 2023
849e6dd
Merge pull request #42 from bhanvimenghani/readme
dinogun Aug 11, 2023
6408d40
Adds Settings and Chart
Jul 28, 2023
da92578
adds summary table
Aug 2, 2023
f50805a
fixing drawer
Aug 9, 2023
2b245bd
npx npm-check-updates -t latest
bhanvimenghani Aug 9, 2023
7674ba3
resolving conflicts
bhanvimenghani Aug 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -24,4 +24,3 @@ COPY --from=builder /app/dist/* /usr/share/nginx/html/
EXPOSE 80

CMD ["nginx", "-g", "daemon off;"]

80 changes: 0 additions & 80 deletions getotps.sh

This file was deleted.

10 changes: 5 additions & 5 deletions src/app/About/About.tsx
Original file line number Diff line number Diff line change
@@ -20,20 +20,20 @@ const About = () => (

<br />
<Text component={TextVariants.h5} className="pf-m-redhat-font">
Autotune is an Autonomous Performance Tuning Tool for Kubernetes. Autotune accepts a user provided Service Level
Kruize is an Autonomous Performance Tuning Tool for Kubernetes. Kruize accepts a user provided Service Level
Objective or "slo" goal to optimize application performance. It uses Prometheus to identify "layers" of an
application that it is monitoring and matches tunables from those layers to the user provided slo. It then runs
experiments with the help of a hyperparameter optimization framework to arrive at the most optimal values for the
identifed tunables to get a better result for the user provided slo.
<br />
<br />
Autotune can take an arbitrarily large set of tunables and run experiments to continually optimize the user
provided slo in incremental steps. For this reason, it does not necessarily have a "best" value for a set of
tunables, only a "better" one than what is currently deployed.
Kruize can take an arbitrarily large set of tunables and run experiments to continually optimize the user provided
slo in incremental steps. For this reason, it does not necessarily have a "best" value for a set of tunables, only
a "better" one than what is currently deployed.
</Text>
<br />
{/* <Link to="/newexperiment">
<Button variant="primary">Start an Autotune Experiment</Button>
<Button variant="primary">Start a Kruize Experiment</Button>
</Link>
Hiding from the user
*/}
73 changes: 0 additions & 73 deletions src/app/Components/KruizeDropdown.tsx

This file was deleted.

63 changes: 0 additions & 63 deletions src/app/app.css

This file was deleted.

1 change: 0 additions & 1 deletion src/app/index.tsx
Original file line number Diff line number Diff line change
@@ -3,7 +3,6 @@ import '@patternfly/react-core/dist/styles/base.css';
import { BrowserRouter as Router } from 'react-router-dom';
import { AppLayout } from '@app/AppLayout/AppLayout';
import { AppRoutes } from '@app/routes';
import '@app/app.css';

const App = () => {
return (
5 changes: 1 addition & 4 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -12,9 +12,6 @@

<body>
<noscript>Enabling JavaScript is required to run this app.</noscript>
<div id="root">
<!-- <script type="text/javascript" src="SubmitButtonSearchInput.js"></script>
<script type="text/typescript" src="FAQs.tsx"></script> -->
</div>
<div id="root" style="height: 100%"></div>
</body>
</html>