Skip to content

Commit 475604a

Browse files
committed
Merge remote-tracking branch 'origin/main' into ebs-v1
2 parents 7a9669a + 5299b9d commit 475604a

File tree

7,373 files changed

+1259357
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,373 files changed

+1259357
-0
lines changed

.github/workflows/build.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Observability Dashboards
2+
on:
3+
pull_request_target:
4+
types:
5+
- closed
6+
branches:
7+
- main
8+
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@main
16+
- name: generate tag
17+
uses: Klemensas/action-autotag@stable
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
tag_message: "build testing"
21+
changelog_structure: "{{author}}\n"
22+
- name: Package Observability Dashboards
23+
run: |
24+
cd ./ && zip -r ./observability-dashboards.zip . -x ./docs/\* .git/\* .git\*
25+
- name: Create Release
26+
id: create_release
27+
uses: actions/create-release@v1
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
with:
31+
tag_name: ${{ steps.generate_tag.outputs.tagname }}
32+
release_name: Observability Dashboards Apps release ${{ steps.generate_tag.outputs.tagname }}
33+
- name: Upload Observability Dashboards Terraform Package
34+
uses: actions/upload-release-asset@v1
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
with:
38+
upload_url: ${{ steps.create_release.outputs.upload_url }}
39+
asset_path: ./observability-dashboards.zip
40+
asset_name: observability-dashboards.zip
41+
asset_content_type: application/zip

.github/workflows/docs.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow one concurrent deployment
19+
concurrency:
20+
group: "pages"
21+
cancel-in-progress: true
22+
23+
jobs:
24+
# Single deploy job since we're just deploying
25+
deploy:
26+
environment:
27+
name: github-pages
28+
url: ${{ steps.deployment.outputs.page_url }}
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v3
33+
- name: Setup Pages
34+
uses: actions/configure-pages@v3
35+
- name: Upload artifact
36+
uses: actions/upload-pages-artifact@v1
37+
with:
38+
# Upload entire repository
39+
path: './docs/public'
40+
- name: Deploy to GitHub Pages
41+
id: deployment
42+
uses: actions/deploy-pages@v1
43+

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
deploy.sh
2+
.DS_*

docs/.DS_Store

8 KB
Binary file not shown.

docs/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#
2+
# Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3+
# The Universal Permissive License (UPL), Version 1.0
4+
#
5+
public
6+
node_modules
7+
themes/*
8+
!themes/redwood
9+
resources/_gen/*
10+
static/index.json

docs/.hugo_build.lock

Whitespace-only changes.

docs/Makefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!make
2+
3+
# Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
4+
# The Universal Permissive License (UPL), Version 1.0
5+
6+
THEME=themes/redwood
7+
8+
dev: theme up
9+
10+
build: theme hugo
11+
12+
theme:
13+
cd $(THEME) && npm install
14+
15+
hugo:
16+
@hugo -D
17+
18+
up:
19+
@hugo server -D --disableFastRender

docs/README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# MuShop Docs
2+
3+
## Looking for the Docs?
4+
5+
See [https://oracle-quickstart.github.io/oci-cloudnative/](https://oracle-quickstart.github.io/oci-cloudnative/)
6+
7+
## Developing the Docs
8+
9+
Project documentation is built with [Hugo](https://gohugo.io/) and customized [UIkit](https://getuikit.com) theme.
10+
11+
### Setup
12+
13+
1. Install documentation theme:
14+
15+
```sh
16+
make theme
17+
```
18+
19+
1. Install [`hugo` CLI](https://gohugo.io/getting-started/installing/):
20+
21+
```sh
22+
brew install hugo
23+
```
24+
25+
### Development
26+
27+
In general, the content management follows all the standard features of Hugo.
28+
29+
- [Hugo Content Management](https://gohugo.io/content-management/)
30+
31+
#### Start hugo server
32+
33+
```sh
34+
make dev
35+
```
36+
37+
Or with `hugo`:
38+
39+
```sh
40+
hugo server --buildDrafts
41+
```
42+
43+
### Usage
44+
45+
Open [http://localhost:1313/usage](http://localhost:1313/usage)

docs/archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

docs/assets/sass/_config.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* Copyright © 2020, Oracle and/or its affiliates. All rights reserved.
3+
* The Universal Permissive License (UPL), Version 1.0
4+
*/
5+
@import "redwood/assets/sass/variables";
6+
7+
// CONTRIBUTORS
8+
$contrib-avatar-size: 50px;

0 commit comments

Comments
 (0)