Skip to content

Commit

Permalink
(from getambassador.io) edits
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmcclure-dw committed Jun 2, 2021
1 parent b8640ac commit 5f02c1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 20 deletions.
18 changes: 0 additions & 18 deletions install/upgrade-tabs.js
Expand Up @@ -9,7 +9,6 @@ import HubspotForm from 'react-hubspot-form';
import CodeBlock from '../../../../../src/components/CodeBlock';
import LinuxIcon from '../../../../../src/assets/icons/linux.inline.svg';
import AppleIcon from '../../../../../src/assets/icons/apple.inline.svg';
import WindowsIcon from '../../../../../src/assets/icons/windows.inline.svg';

function TabPanel(props) {
const { children, value, index, ...other } = props;
Expand Down Expand Up @@ -65,7 +64,6 @@ export default function SimpleTabs() {
<Tabs value={value} onChange={handleChange} aria-label="operating system tabs">
<Tab icon={<AppleIcon />} label="macOS" {...a11yProps(0)} style={{ minWidth: "10%", textTransform: 'none' }} />
<Tab icon={<LinuxIcon />} label="Linux" {...a11yProps(1)} style={{ minWidth: "10%", textTransform: 'none' }} />
<Tab icon={<WindowsIcon />} label="Windows" {...a11yProps(2)} style={{ minWidth: "10%", textTransform: 'none' }} />
</Tabs>
</AppBar>
<TabPanel value={value} index={0}>
Expand Down Expand Up @@ -100,22 +98,6 @@ export default function SimpleTabs() {
}
</CodeBlock>
</TabPanel>
<TabPanel value={value} index={2}>
<div class="docs-hubspot-formwrapper">
<p>
Telepresence for Windows is coming soon! Sign up here to notified when it is available.
</p>
<div class="docs-hubspot-form">
<HubspotForm
portalId='485087'
formId='2f542f1b-3da8-4319-8057-96fed78e4c26'
onSubmit={() => console.log('Submit!')}
onReady={(form) => console.log('Form ready!')}
loading={<div>Loading...</div>}
/>
</div>
</div>
</TabPanel>
</div >
);
}
4 changes: 2 additions & 2 deletions install/upgrade.md
Expand Up @@ -2,11 +2,11 @@
description: "How to upgrade your installation of Telepresence and install previous versions."
---

import QSTabs from './upgrade-tabs'
import UpgradeTabs from './upgrade-tabs'

# Upgrade Process
The Telepresence CLI will periodically check for new versions and notify you when an upgrade is available. Running the same commands used for installation will replace your current binary with the latest version.

<QSTabs/>
<UpgradeTabs/>

After upgrading your CLI, the Traffic Manager **must be uninstalled** from your cluster. This can be done using `telepresence uninstall --everything` or by `kubectl delete svc,deploy -n ambassador traffic-manager`. The next time you run a `telepresence` command it will deploy an upgraded Traffic Manager.

0 comments on commit 5f02c1b

Please sign in to comment.