Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "docs/crossplane-provider-btp"]
path = docs/crossplane-provider-btp
url = https://github.com/SAP/crossplane-provider-btp.git
[submodule "docs/crossplane-provider-hana"]
path = docs/crossplane-provider-hana
url = https://github.com/SAP/crossplane-provider-hana.git
1 change: 1 addition & 0 deletions docs/crossplane-provider-hana
8 changes: 7 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ const config = {
// exclude everything in the btp submodule except the docs/ subfolder
'crossplane-provider-btp/!(docs)/**',
'crossplane-provider-btp/!(docs)',
'crossplane-provider-hana/!(docs)/**',
'crossplane-provider-hana/!(docs)',
],
},
blog: false,
Expand Down Expand Up @@ -87,6 +89,10 @@ const config = {
label: 'crossplane-provider-btp',
to: '/docs/crossplane-provider-btp/docs/user/external-name',
},
{
label: 'crossplane-provider-hana',
to: '/docs/crossplane-provider-hana/docs/ADR/20250822-hana-x509-authentication',
},
],
},
{
Expand All @@ -110,7 +116,7 @@ const config = {
// static/ contains all images for this repo (img/ subfolder)
// Each submodule's docs/ directory is added so that images in docs/img/ are served at /img/...
// To add a new submodule, append its docs path, e.g. 'docs/crossplane-provider-xyz/docs'
staticDirectories: ['static', 'docs/crossplane-provider-btp/docs'],
staticDirectories: ['static', 'docs/crossplane-provider-btp/docs', 'docs/crossplane-provider-hana/docs'],
};

module.exports = config;
12 changes: 12 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ const sidebars = {
},
],
},
{
type: 'category',
label: 'crossplane-provider-hana',
collapsible: true,
collapsed: true,
items: [
{
type: 'autogenerated',
dirName: 'crossplane-provider-hana/docs',
},
],
},
],
};

Expand Down
9 changes: 9 additions & 0 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export default function Home() {
<div className="action medium alt">
<a href="/crossplane-provider-docs/docs/crossplane-provider-btp/docs/user/external-name">crossplane-provider-btp</a>
</div>
<div className="action medium alt">
<a href="/crossplane-provider-docs/docs/crossplane-provider-hana/docs/user-stories/setup">crossplane-provider-hana</a>
</div>
</div>
</div>
</div>
Expand Down Expand Up @@ -161,6 +164,12 @@ export default function Home() {
our crossplane provider for SAP BTP
</Link>
</span>
<span>
or explore{" "}
<Link to="/crossplane-provider-docs/docs/crossplane-provider-hana/docs/user-stories/setup">
our crossplane provider for SAP HANA
</Link>
</span>
</section>

<section className="open-source-section">
Expand Down
Loading