Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
akafazov committed Oct 16, 2024
0 parents commit 429a9ce
Show file tree
Hide file tree
Showing 27 changed files with 976 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/account-operator-crds.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build account-operator-crds Workflow
on:
push:
paths:
- 'charts/account-operator-crds/**'
- '.github/workflows/account-operator-crds.yaml'

jobs:
pipeline:
concurrency:
group: account-operator-crds-${{ github.ref }}
cancel-in-progress: true
uses: openmfp/gha/.github/workflows/pipeline-chart.yml@main
with:
chartFolder: charts
chartName: account-operator-crds
additionalTestFilesCommand: ''
chartRepos: 'bitnami=https://charts.bitnami.com/bitnami,openfga=https://openfga.github.io/helm-charts'
secrets: inherit

updateVersionFile:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [pipeline]
uses: openmfp/gha/.github/workflows/job-update-version-file.yml@main
secrets: inherit
with:
componentVersionKey: "account-operator-crds"
version: ${{ needs.pipeline.outputs.version }}
28 changes: 28 additions & 0 deletions .github/workflows/account-operator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build account-operator Workflow
on:
push:
paths:
- 'charts/account-operator/**'
- '.github/workflows/account-operator.yaml'

jobs:
pipeline:
concurrency:
group: account-operator-${{ github.ref }}
cancel-in-progress: true
uses: openmfp/gha/.github/workflows/pipeline-chart.yml@main
with:
chartFolder: charts
chartName: account-operator
additionalTestFilesCommand: ''
chartRepos: 'bitnami=https://charts.bitnami.com/bitnami,openfga=https://openfga.github.io/helm-charts'
secrets: inherit

updateVersionFile:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [pipeline]
uses: openmfp/gha/.github/workflows/job-update-version-file.yml@main
secrets: inherit
with:
componentVersionKey: "account-operator"
version: ${{ needs.pipeline.outputs.version }}
71 changes: 71 additions & 0 deletions .github/workflows/update-chart-parameters.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Update chart parameters

on:
workflow_dispatch:
inputs:
chart:
description: 'The name of the helm chart'
required: true
default: ''
appVersion:
description: 'The version tag of the docker image'
required: true
default: '0.0.0'

jobs:
version-update:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: "838464"
private-key: ${{ secrets.OPENMFP_PUBLISHER_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
token: ${{ steps.app-token.outputs.token }}
- name: Setup yq@latest
run: |
if ! command -v yq &>/dev/null
then
mkdir -p /home/runner/.local/bin
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /home/runner/.local/bin/yq &&\
chmod +x /home/runner/.local/bin/yq
fi
- name: Configure GIT
run: |
git config --global user.name "OpenMFP Publisher"
git config --global user.email "openmfp@gmail.com"
- name: Update appVersion in Chart.yaml
run: |
chart_file="charts/${{ inputs.chart }}/Chart.yaml"
ls -al charts/
if [ -f "$chart_file" ]; then
echo "Chart.yaml file found at $chart_file"
yq e -i '.appVersion = "${{ inputs.appVersion }}"' "$chart_file"
echo "Updated appVersion to ${{ inputs.appVersion }} in $chart_file"
# bump version parameter in chart
CHART_VERSION=$(yq '.version' "$chart_file")
IFS='.' read -r -a VERSION_PARTS <<< "$CHART_VERSION"
MAJOR=${VERSION_PARTS[0]}
MINOR=${VERSION_PARTS[1]}
PATCH=${VERSION_PARTS[2]}
NEW_PATCH=$((PATCH + 1))
NEW_CHART_VERSION="$MAJOR.$MINOR.$NEW_PATCH"
yq e -i ".version = \"$NEW_CHART_VERSION\"" "$chart_file"
echo "Version bumped to $NEW_CHART_VERSION in $chart_file"
git add "$chart_file"
git commit -m "Updating appVersion to ${{ inputs.appVersion }} in $chart_file" || echo "appVersion was already up to date"
else
echo "Chart.yaml file not found at $chart_file"
exit 1
fi
- name: Git push
run: |
git push origin main
echo "Pushed changes to main"
git show HEAD
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#5d57d5",
"activityBar.background": "#5d57d5",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#df847f",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#5d57d5",
"statusBar.background": "#3932c7",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#5d57d5",
"statusBarItem.remoteBackground": "#3932c7",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#3932c7",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#3932c799",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#3932c7"
}
33 changes: 33 additions & 0 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: '3'

vars:
LOCAL_BIN: bin
CHARTS:
sh: "ls charts/ | sed 's/^/charts\\//g' | paste -sd ',' -"
tasks:
## Development
lint:
deps: []
cmds:
- "ct lint --target-branch main --validate-maintainers=false --charts={{.CHARTS}}"
package:
cmds:
- helm package ./charts/openmfp
helmtest:
cmds:
- helm unittest ./charts/common
- helm unittest ./charts/account-operator-crds
- helm unittest ./charts/account-operator
test:
deps:
- task: helmtest
update:
cmds:
- helm dependency update ./charts/common
- helm dependency update ./charts/account-operator-crds
- helm dependency update ./charts/account-operator
validate:
cmds:
- task: lint
- task: package
- task: test
9 changes: 9 additions & 0 deletions charts/account-operator-crds/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: v2
name: account-operator-crds
description: A Helm chart for Kubernetes

type: application

version: 0.0.2

appVersion: "1.16.0"
197 changes: 197 additions & 0 deletions charts/account-operator-crds/templates/core.openmfp.io_accounts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,197 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.14.0
name: accounts.core.openmfp.io
spec:
group: core.openmfp.io
names:
kind: Account
listKind: AccountList
plural: accounts
singular: account
scope: Namespaced
versions:
- additionalPrinterColumns:
- jsonPath: .spec.displayName
name: Display Name
type: string
- jsonPath: .status.namespace
name: Account Namespace
type: string
- jsonPath: .spec.type
name: Type
type: string
- jsonPath: .status.conditions[?(@.type=="Ready")].status
name: Ready
type: string
name: v1alpha1
schema:
openAPIV3Schema:
description: Account is the Schema for the accounts API
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: AccountSpec defines the desired state of Account
properties:
creator:
description: The initial creator of this account
type: string
data:
description: Additional information that should be stored with the
account
x-kubernetes-preserve-unknown-fields: true
description:
description: An optional description for this account
type: string
displayName:
description: The display name for this account
maxLength: 255
type: string
extensions:
items:
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
readyConditionType:
description: |-
The type of a condition that must be set to True on the Extension object
for the extension to be considered reconciled and ready. If this is empty,
the extension is considered ready.
type: string
specGoTemplate:
x-kubernetes-preserve-unknown-fields: true
required:
- specGoTemplate
type: object
type: array
namespace:
description: Namespace is the account should take ownership of
type: string
type:
description: Type specifies the intended type for this Account object.
enum:
- folder
- account
type: string
required:
- displayName
- type
type: object
status:
description: AccountStatus defines the observed state of Account
properties:
conditions:
items:
description: "Condition contains details for one aspect of the current
state of this API Resource.\n---\nThis struct is intended for
direct use as an array at the field path .status.conditions. For
example,\n\n\n\ttype FooStatus struct{\n\t // Represents the
observations of a foo's current state.\n\t // Known .status.conditions.type
are: \"Available\", \"Progressing\", and \"Degraded\"\n\t //
+patchMergeKey=type\n\t // +patchStrategy=merge\n\t // +listType=map\n\t
\ // +listMapKey=type\n\t Conditions []metav1.Condition `json:\"conditions,omitempty\"
patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"`\n\n\n\t
\ // other fields\n\t}"
properties:
lastTransitionTime:
description: |-
lastTransitionTime is the last time the condition transitioned from one status to another.
This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.
format: date-time
type: string
message:
description: |-
message is a human readable message indicating details about the transition.
This may be an empty string.
maxLength: 32768
type: string
observedGeneration:
description: |-
observedGeneration represents the .metadata.generation that the condition was set based upon.
For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date
with respect to the current state of the instance.
format: int64
minimum: 0
type: integer
reason:
description: |-
reason contains a programmatic identifier indicating the reason for the condition's last transition.
Producers of specific condition types may define expected values and meanings for this field,
and whether the values are considered a guaranteed API.
The value should be a CamelCase string.
This field may not be empty.
maxLength: 1024
minLength: 1
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$
type: string
status:
description: status of the condition, one of True, False, Unknown.
enum:
- "True"
- "False"
- Unknown
type: string
type:
description: |-
type of condition in CamelCase or in foo.example.com/CamelCase.
---
Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be
useful (see .node.status.conditions), the ability to deconflict is important.
The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
maxLength: 316
pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$
type: string
required:
- lastTransitionTime
- message
- reason
- status
- type
type: object
type: array
namespace:
type: string
nextReconcileTime:
format: date-time
type: string
observedGeneration:
format: int64
type: integer
type: object
type: object
served: true
storage: true
subresources:
status: {}
Empty file.
Loading

0 comments on commit 429a9ce

Please sign in to comment.