Skip to content

Commit 6c9b368

Browse files
committed
chore: Remove/simplify scripts, deployment templates
Signed-off-by: Tomas Coufal <[email protected]>
1 parent cd49b15 commit 6c9b368

21 files changed

+21
-427
lines changed

.aicoe-ci.yaml

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
1-
check:
2-
- thoth-build
3-
build:
4-
base-image: "registry.access.redhat.com/ubi8/nodejs-12"
5-
build-stratergy: Source
6-
registry: quay.io
7-
registry-org: aicoe
8-
registry-project: operate-first-app
9-
registry-secret: aicoe-pusher-secret
1+
check: []

.env.default

-13
This file was deleted.

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v12.22.5

.s2i/environment

-1
This file was deleted.

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ node_js:
88
- "12"
99
deploy:
1010
provider: script
11-
script: npm install && npm run travis-deploy
11+
script: npm ci && npm run travis-deploy
1212
skip_cleanup: true
1313
on:
1414
branch: master

Makefile

-92
This file was deleted.

README.md

+13-100
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Operate First Website
2+
23
![Website](https://img.shields.io/website?url=https%3A%2F%2Fwww.operate-first.cloud%2F)
34

45
This repository contains some content and the code to build [operate-first.cloud](https://www.operate-first.cloud/). It is based on [Gatsby](https://www.gatsbyjs.com/) and can be deployed to [OpenShift](scripts/templates/base) or [GitHub Pages](https://pages.github.com/).
@@ -40,6 +41,7 @@ For example, to add content locally to the `blueprints` category, create a docum
4041
### Supported File Types
4142

4243
Files formatted as
44+
4345
* [Markdown .md](https://daringfireball.net/projects/markdown/)
4446
* [JupyterNotebook .ipynb](https://jupyter.org/)
4547
* [MarkdownX .mdx](https://mdxjs.com/)
@@ -75,7 +77,6 @@ Similar to Markdown, but you can add [React Components](https://www.gatsbyjs.com
7577

7678
See [/content/examples/mdx.mdx](/content/examples/mdx.mdx) rendered [here](https://www.operate-first.cloud/examples/mdx.mdx)
7779

78-
7980
```markdown
8081
---
8182
title: My MDX
@@ -105,7 +106,6 @@ Content will be added to one of the four categories on this website:
105106
* **operations**: Documentation pertaining to Operate First operation procedures.
106107
* **blueprints**: Generic information that can be applied to other projects as well.
107108

108-
109109
#### Configuring Table of Contents
110110

111111
Whether adding content remotely, or locally, the content needs to be added to the vertical navigation bar on the left and will belong to one of the four categories.
@@ -128,118 +128,31 @@ Following is an example of 2 level hierarchy from a repo, for cases where you ha
128128
href: /blueprints/continuous-delivery/docs/setup_source_operations
129129
```
130130
131-
132131
## Local Development
133132
134133
You can run the app locally to preview your changes.
135134
In terminal:
136135
137-
```shell script
138-
make dev
136+
```sh
137+
npm install
138+
npm run dev
139139
```
140140

141-
If you have problems, run `make dev-clean`
142-
143-
### Previewing your changes on GitHub pages
144-
145-
When previewing your changes on a fork.
146-
147-
First, enable github pages to use the gh-pages branch from root.
148-
149-
![](misc/gh-pages-fork.png)
150-
151-
Make sure to push your changes to your branch on the fork.
152-
153-
Then, from your branch manually build and push.
141+
In case of stale cache or errors, please try:
154142

155-
```shell script
156-
make gh-pages-fork
143+
```sh
144+
npm run clean
157145
```
158146

159-
Now you can view your work on `https://githubuserid.github.io/operate-first.github.io`
160-
161-
### Previewing multiple PRs on GitHub pages
162-
163-
If you've set up to preview the site on your personal GitHub pages, like the above, you can also preview multiple PR branches from your fork under separate paths. For example, for a branch named `my-branch`, would deploy under a subpath of the same name.
164-
165-
From your branch manually build and push.
166-
167-
```shell script
168-
make gh-pages-branch
169-
```
147+
### Previewing your changes on GitHub pages
170148

171-
Now you can view your work on `https://githubuserid.github.io/operate-first.github.io/my-branch`
149+
We use Netlify to preview PR changes. Each PR will show a Netlify check that can be used to access a dynamically generated build and deployment of that PR.
172150

173151
### Manual Site Deployment (Production GitHub Pages)
174152

175153
[CI](https://travis-ci.org/github/operate-first/operate-first.github.io) should deploy to GitHub pages automatically, but to manually redeploy
176154

177-
```shell script
178-
make gh-pages
179-
```
180-
181-
## Building the site in a container
182-
183-
Customize your `.env` file similar to `.env.default`(.env.default)
184-
185-
#### Building a containerized image
186-
187-
Customize `.env` file to image and source information as desired. `npm` and the `s2i` command line tool is required. [https://github.com/openshift/source-to-image](https://github.com/openshift/source-to-image)
188-
189-
```.env
190-
IMAGE_REPOSITORY=quay.io/my-org/operate-first-app:latest
191-
[email protected]:my-org/operate-first.github.io.git
192-
SOURCE_REPOSITORY_REF=my-branch
193-
```
194-
195-
```shell script
196-
make build
197-
```
198-
199-
#### Pushing the container image
200-
201-
Customize `.env` file to image information and container builder.
202-
203-
```.env
204-
CONTAINER_BUILDER=docker
205-
IMAGE_REPOSITORY=quay.io/my-org/odh-dashboard:latest
206-
```
207-
208-
```shell script
209-
make push
210-
```
211-
212-
#### Deploying to OpenShift
213-
214-
Customize `.env` file for deployment information. Required. `oc` command line tool is required.
215-
216-
```.env
217-
OC_URL=https://api.my-host:6443
218-
OC_PROJECT=operate-first
219-
# user and password login
220-
OC_USER=kubeadmin
221-
OC_PASSWORD=my_password
222-
```
223-
224-
or
225-
226-
```.env
227-
OC_URL=https://api.my-host:6443
228-
OC_PROJECT=operate-first
229-
# token login
230-
OC_TOKEN=my_token
231-
```
232-
233-
Modify the image repository in the deployment config `deployment.yaml` present in `scripts/templates/base` to fetch the latest image from the location you pushed the container image to in the previous step.
234-
235-
Modify the following line to reflect the image repository you pushed it to.
236-
237-
```yaml
238-
image: quay.io/cfchase/operate-first-app:latest
239-
```
240-
241-
Run:
242-
243-
```shell script
244-
make deploy
155+
```sh
156+
npm install
157+
npm deploy
245158
```

package.json

+5-9
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@
44
"version": "0.1.0",
55
"license": "GPLv3",
66
"scripts": {
7-
"build": "gatsby build",
8-
"develop": "gatsby develop",
9-
"format": "prettier --write \"*.{js,jsx,ts,tsx,json,md}\" \"src/**/*.{js,jsx,ts,tsx,json,md}\" \"content/**/*.{js,jsx,ts,tsx,json,md}\"",
10-
"start": "npm run develop",
7+
"build": "gatsby build --prefix-paths",
8+
"dev": "gatsby develop",
119
"serve": "gatsby serve -H ${HOST:-0.0.0.0} -p ${PORT:-8080}",
1210
"clean": "gatsby clean",
13-
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 0",
14-
"deploy": "gatsby build --prefix-paths && gh-pages -d public -m 'Updates: Manual build'",
15-
"deploy-fork": "PATH_PREFIX='/operate-first.github.io' gatsby build --prefix-paths && gh-pages -d public -m 'Preview Fork: Manual build' ",
16-
"deploy-branch": "PATH_PREFIX=\"/operate-first.github.io/$(git rev-parse --abbrev-ref HEAD)\" gatsby build --prefix-paths && gh-pages -d public -a -e $(git rev-parse --abbrev-ref HEAD) -m 'Preview Fork: Manual build of a branch' ",
17-
"travis-deploy": "gatsby build --prefix-paths && gh-pages -d public -r https://[email protected]/operate-first/operate-first.github.io.git -m \"Updates $TRAVIS_COMMIT: $TRAVIS_COMMIT_MESSAGE\""
11+
"gh-pages": "gh-pages -d public",
12+
"deploy": "npm run build && npm run gh-pages -- -m 'Updates: Manual build'",
13+
"travis-deploy": "npm run build && npm run gh-pages -- -r https://[email protected]/operate-first/operate-first.github.io.git -m \"Updates $TRAVIS_COMMIT: $TRAVIS_COMMIT_MESSAGE\""
1814
},
1915
"dependencies": {
2016
"@mdx-js/mdx": "^1.6.22",

scripts/build.sh

-25
This file was deleted.

scripts/deploy.sh

-11
This file was deleted.

scripts/dev-clean.sh

-16
This file was deleted.

scripts/dev.sh

-18
This file was deleted.

0 commit comments

Comments
 (0)